From 54af4e03db0cbda5fb0682fa381593f565f489c1 Mon Sep 17 00:00:00 2001
From: Alexey Alter-Pesotskiy
Date: Wed, 14 Aug 2024 10:53:24 +0100
Subject: [PATCH] [CI] Add space to SDK size badge (#3379)
---
Gemfile.lock | 4 ++--
README.md | 4 ++--
fastlane/Fastfile | 8 ++++----
fastlane/Pluginfile | 2 +-
4 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/Gemfile.lock b/Gemfile.lock
index 40f6795f947..5607f1e92c3 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -199,7 +199,7 @@ GEM
fastlane
pry
fastlane-plugin-sonarcloud_metric_kit (0.2.1)
- fastlane-plugin-stream_actions (0.3.57)
+ fastlane-plugin-stream_actions (0.3.59)
xctest_list (= 1.2.1)
fastlane-plugin-versioning (0.5.2)
ffi (1.17.0)
@@ -437,7 +437,7 @@ DEPENDENCIES
fastlane-plugin-create_xcframework
fastlane-plugin-lizard
fastlane-plugin-sonarcloud_metric_kit
- fastlane-plugin-stream_actions (= 0.3.57)
+ fastlane-plugin-stream_actions (= 0.3.59)
fastlane-plugin-versioning
jazzy
json
diff --git a/README.md b/README.md
index a972e18dbfb..6d9c4a0286e 100644
--- a/README.md
+++ b/README.md
@@ -13,8 +13,8 @@
-
-
+
+
This is the official iOS SDK for [Stream Chat](https://getstream.io/chat/sdk/ios/), a service for building chat and messaging applications. This library includes both a low-level SDK and a set of reusable UI components.
diff --git a/fastlane/Fastfile b/fastlane/Fastfile
index 775dc797a44..7a33d535c93 100644
--- a/fastlane/Fastfile
+++ b/fastlane/Fastfile
@@ -869,11 +869,11 @@ def frameworks_sizes
stream_chat_size = File.size("#{frameworks_path}/StreamChat.framework/StreamChat")
stream_chat_ui_size = File.size("#{frameworks_path}/StreamChatUI.framework/StreamChatUI")
- stream_chat_size_kb = stream_chat_size.to_f / 1024
- stream_chat_ui_size_kb = (stream_chat_ui_size + assets_thinned_size).to_f / 1024
+ stream_chat_size_kb = stream_chat_size / 1024.0
+ stream_chat_ui_size_kb = (stream_chat_ui_size + assets_thinned_size) / 1024.0
{
- StreamChat: stream_chat_size_kb,
- StreamChatUI: stream_chat_ui_size_kb
+ StreamChat: stream_chat_size_kb.round(0),
+ StreamChatUI: stream_chat_ui_size_kb.round(0)
}
end
diff --git a/fastlane/Pluginfile b/fastlane/Pluginfile
index c0cc4f48e4d..b3028813b2a 100644
--- a/fastlane/Pluginfile
+++ b/fastlane/Pluginfile
@@ -5,4 +5,4 @@
gem 'fastlane-plugin-versioning'
gem 'fastlane-plugin-create_xcframework'
gem 'fastlane-plugin-sonarcloud_metric_kit'
-gem 'fastlane-plugin-stream_actions', '0.3.57'
+gem 'fastlane-plugin-stream_actions', '0.3.59'