Skip to content

Commit

Permalink
Release v2.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane JAIS committed Feb 20, 2023
1 parent 47c0d40 commit 0f7470f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.3.5
* Upgrade to WonderPush iOS SDK v4.1.5
* Upgrade to WonderPush Android SDK v4.3.3
* Expose access token, device ID and user consent
* Allow subscribeToNotifications(bool) to show a dialog that takes users to settings on Android

## 2.3.4
* Upgrade to WonderPush iOS SDK v4.1.4
* Bug fix where putProperties ignored null values on Android
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.4'
version '2.3.5'

buildscript {
repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void onDetachedFromEngine(@NonNull FlutterPluginBinding binding) {

private void onAttachedToEngine(Context applicationContext, BinaryMessenger binaryMessenger) {
// Integrator
WonderPush.setIntegrator("wonderpush_flutter-2.3.4");
WonderPush.setIntegrator("wonderpush_flutter-2.3.5");

// 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 @@ -10,7 +10,7 @@ @interface WonderPushPlugin() <WonderPushDelegate>
@implementation WonderPushPlugin

+ (void) registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
[WonderPush setIntegrator:@"wonderpush_flutter-2.3.4"];
[WonderPush setIntegrator:@"wonderpush_flutter-2.3.5"];
pluginInstance = [[WonderPushPlugin alloc] init];
methodChannel = [FlutterMethodChannel
methodChannelWithName:@"wonderpush_flutter"
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.4
version: 2.3.5
homepage: https://www.wonderpush.com/

environment:
Expand Down

0 comments on commit 0f7470f

Please sign in to comment.