diff --git a/Assets/Plugins/StreamChat/Changelog.txt b/Assets/Plugins/StreamChat/Changelog.txt index 012ed2e0..e464d271 100644 --- a/Assets/Plugins/StreamChat/Changelog.txt +++ b/Assets/Plugins/StreamChat/Changelog.txt @@ -1,3 +1,7 @@ +v4.9.0: +Fixes: +* Fix compiler errors after switching to WebGL platform + v4.8.0: Features: * Add method to get the current state of the unread counts with IStreamChatClient.GetLatestUnreadCountsAsync() -> this method also works when the client is disconnected. The unread counts state provides a detailed information about unread messages in each channel and thread. diff --git a/Assets/Plugins/StreamChat/Core/LowLevelClient/StreamChatLowLevelClient.cs b/Assets/Plugins/StreamChat/Core/LowLevelClient/StreamChatLowLevelClient.cs index c12ae634..1c2d407b 100644 --- a/Assets/Plugins/StreamChat/Core/LowLevelClient/StreamChatLowLevelClient.cs +++ b/Assets/Plugins/StreamChat/Core/LowLevelClient/StreamChatLowLevelClient.cs @@ -206,7 +206,7 @@ private set /// /// SDK Version number /// - public static readonly Version SDKVersion = new Version(4, 8, 0); + public static readonly Version SDKVersion = new Version(4, 9, 0); /// /// Use this method to create the main client instance or use StreamChatClient constructor to create a client instance with custom dependencies