Skip to content

Commit a0ec263

Browse files
0.9.4
1 parent 5cac16d commit a0ec263

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.9.4 (2021/12/08)
2+
3+
### Enhancement
4+
* Optimise user create flow (iOS)
5+
6+
### Bug fix
7+
* Fix for Topic name and image being empty
8+
19
## 0.9.3 (24/11/2021)
210

311
### Enhancements

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.freshdesk:freshchat-android:5.0.1'
38+
implementation 'com.github.freshdesk:freshchat-android:5.0.2'
3939
}
4040

4141

ios/freshchat_sdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A new flutter plugin project.
1717
s.public_header_files = 'Classes/**/*.h'
1818
s.dependency 'Flutter'
1919
s.platform = :ios
20-
s.dependency "FreshchatSDK", '5.0.2'
20+
s.dependency "FreshchatSDK", '5.0.3'
2121

2222
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
2323
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }

lib/freshchat_sdk.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ class Freshchat {
224224
final String sdkVersion = await _channel.invokeMethod('getSdkVersion');
225225
final String operatingSystem = Platform.operatingSystem;
226226
// As there is no simple way to get current freshchat flutter sdk version, we are hardcoding here.
227-
final String allSdkVersion = "flutter-0.9.3-$operatingSystem-$sdkVersion ";
227+
final String allSdkVersion = "flutter-0.9.4-$operatingSystem-$sdkVersion ";
228228
return allSdkVersion;
229229
}
230230

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.9.3
6+
version: 0.9.4
77
homepage: https://freshchat.com
88

99
environment:

0 commit comments

Comments
 (0)