Skip to content

Commit 227f0b5

Browse files
committed
Update SDK to 0.10.10
1 parent 6ad5357 commit 227f0b5

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.10.9 (17/10/2023)
2+
### Enhancement
3+
* Improvements in user experience when loading messages in a conversation in Android.
4+
5+
### Bug fixes
6+
* Fix for bot variables not being set for resolved conversations in Android.
7+
18
## 0.10.9 (15/09/2023)
29
### Bug fixes
310
* Fix for a crash that occurs during "postback" flow in a bot conversation in Android.

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ android {
3535

3636
dependencies {
3737
implementation 'com.android.support:localbroadcastmanager:28.0.0'
38-
implementation 'com.github.freshworks:freshchat-android:5.9.5'
38+
implementation 'com.github.freshworks:freshchat-android:6.0.0'
3939
}
4040

4141

ios/freshchat_sdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'freshchat_sdk'
7-
s.version = '0.10.9'
7+
s.version = '0.10.10'
88
s.summary = 'Freshchat Flutter SDK - iOS'
99
s.description = <<-DESC
1010
Freshchat Flutter SDK - iOS.

lib/freshchat_sdk.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ class Freshchat {
229229
final String sdkVersion = await _channel.invokeMethod('getSdkVersion');
230230
final String operatingSystem = Platform.operatingSystem;
231231
// As there is no simple way to get current freshchat flutter sdk version, we are hardcoding here.
232-
final String allSdkVersion = "flutter-0.10.9-$operatingSystem-$sdkVersion ";
232+
final String allSdkVersion = "flutter-0.10.10-$operatingSystem-$sdkVersion ";
233233
return allSdkVersion;
234234
}
235235

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Freshchat is a modern messaging software for sales and customer eng
33
repository: https://github.com/freshworks/freshchat-flutter-sdk
44

55
# Whenever this version is updated, it must also be updated in Freshchat::getSdkVersion()
6-
version: 0.10.9
6+
version: 0.10.10
77
homepage: https://www.freshworks.com/
88

99
environment:

0 commit comments

Comments
 (0)