Skip to content

Commit

Permalink
Release v2.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ofavre committed Feb 14, 2024
1 parent 60d21ad commit b9903fc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.3.9
* Setting `namespace` in `build.gradle` to support Android Gradle Build plugin v8

## 2.3.8
* Upgrade to WonderPush Android SDK v4.4.1

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.wonderpush.sdk.flutter'
version '2.3.8'
version '2.3.9'

buildscript {
repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void onAttachedToEngine(@NonNull FlutterPluginBinding flutterPluginBindin
BinaryMessenger binaryMessenger = flutterPluginBinding.getBinaryMessenger();

// Integrator
WonderPush.setIntegrator("wonderpush_flutter-2.3.8");
WonderPush.setIntegrator("wonderpush_flutter-2.3.9");

// Method channel
final MethodChannel channel = new MethodChannel(binaryMessenger, "wonderpush_flutter");
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/WonderPushPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ + (void) registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
#if DEBUG
NSLog(@"[WonderPushPlugin] registerWithRegistrar");
#endif
[WonderPush setIntegrator:@"wonderpush_flutter-2.3.8"];
[WonderPush setIntegrator:@"wonderpush_flutter-2.3.9"];
methodChannel = [FlutterMethodChannel
methodChannelWithName:@"wonderpush_flutter"
binaryMessenger:[registrar messenger]];
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: wonderpush_flutter
description: Mobile push notification delivery with the WonderPush service. The WonderPush Flutter SDK makes it easy to add push notifications to your iOS and Android apps.
version: 2.3.8
version: 2.3.9
homepage: https://www.wonderpush.com/

environment:
Expand Down

0 comments on commit b9903fc

Please sign in to comment.