Skip to content

Commit

Permalink
chore(release): 2.3.1
Browse files Browse the repository at this point in the history
SUITEDEV-35239

Co-authored-by: megamegax <[email protected]>
  • Loading branch information
matusekma and megamegax committed Feb 29, 2024
1 parent 074be45 commit e71bfb9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.3.1
## What's changed
### [Emarsys SDK](https://github.com/emartech/flutter-plugin-for-sap-emarsys-customer-engagement/)
* Updated underlying [Emarsys SDK](https://github.com/emartech/android-emarsys-sdk/releases/tag/3.7.3) for Android to 3.7.3

# 2.3.0
## What's changed
### [Android SDK](https://github.com/emartech/android-emarsys-sdk/)
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ android {


dependencies {
ext.emarsys_sdk_version = '3.7.2'
ext.emarsys_sdk_version = '3.7.3'
ext.junit_version = '4.13.2'
ext.kotlintest_version = '3.4.2'
ext.mockk_version = '1.12.0'
Expand Down
4 changes: 2 additions & 2 deletions lib/notification_settings/notification_settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class NotificationSettings {
}

factory NotificationSettings.fromMap(Map<dynamic, dynamic> map) {
var androidNotificationSettings;
var iosNotificationSettings;
AndroidNotificationSettings? androidNotificationSettings;
IOSNotificationSettings? iosNotificationSettings;
try {
androidNotificationSettings =
AndroidNotificationSettings.fromMap(map['android']);
Expand Down
2 changes: 1 addition & 1 deletion lib/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: emarsys_sdk
description: The Flutter plug-in for SAP Emarsys Customer Engagement is the official plug-in to help integrate Emarsys into your Flutter application.
version: 2.3.0
version: 2.3.1
homepage: https://github.com/emartech/flutter-plugin-for-sap-emarsys-customer-engagement

environment:
Expand Down Expand Up @@ -47,7 +47,7 @@ scripts:
- echo running iOS unit tests
- rm -rf ~/Library/Developer/Xcode/DerivedData
- cd example/ios && pod deintegrate && pod install --no-repo-update --verbose
- cd example/ios && xcodebuild -workspace Runner.xcworkspace -scheme flutter-plugin-ios-tests -configuration Debug -destination 'platform=iOS Simulator,name=iPhone 14 Pro Max' test
- cd example/ios && xcodebuild -workspace Runner.xcworkspace -scheme RunnerTests -configuration Debug -destination 'platform=iOS Simulator,name=iPhone 14 Pro Max' test
test:
- $test-flutter
- sleep 10s
Expand Down

0 comments on commit e71bfb9

Please sign in to comment.