Skip to content

Commit

Permalink
Merge pull request #737 from OneSignal/release-5.0.1
Browse files Browse the repository at this point in the history
bumping version numbers to 5.0.1
  • Loading branch information
emawby authored Sep 14, 2023
2 parents 6249244 + 4e470b2 commit 6095fd4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.onesignal.flutter'
version '5.0.0'
version '5.0.1'

buildscript {
repositories {
Expand Down Expand Up @@ -34,5 +34,5 @@ android {
}

dependencies {
implementation 'com.onesignal:OneSignal:5.0.0'
implementation 'com.onesignal:OneSignal:5.0.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private void init(Context context, BinaryMessenger messenger)
this.messenger = messenger;
OneSignalWrapper.setSdkType("flutter");
// For 5.0.0, hard code to reflect SDK version
OneSignalWrapper.setSdkVersion("050000");
OneSignalWrapper.setSdkVersion("050001");

channel = new MethodChannel(messenger, "OneSignal");
channel.setMethodCallHandler(this);
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/OneSignalPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ + (instancetype)sharedInstance {
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {

OneSignalWrapper.sdkType = @"flutter";
OneSignalWrapper.sdkVersion = @"050000";
OneSignalWrapper.sdkVersion = @"050001";

OneSignalPlugin.sharedInstance.channel = [FlutterMethodChannel
methodChannelWithName:@"OneSignal"
Expand Down
2 changes: 1 addition & 1 deletion ios/onesignal_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
Pod::Spec.new do |s|
s.name = 'onesignal_flutter'
s.version = '5.0.0'
s.version = '5.0.1'
s.summary = 'The OneSignal Flutter SDK'
s.description = 'Allows you to easily add OneSignal to your flutter projects, to make sending and handling push notifications easy'
s.homepage = 'https://www.onesignal.com'
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: onesignal_flutter
description: OneSignal is a free push notification service for mobile apps. This plugin makes it easy to integrate your flutter app with OneSignal
version: 5.0.0
version: 5.0.1
author: Brad Hesse <[email protected]>, Josh Kasten <[email protected]>, Henry Boswell <[email protected]>
homepage: https://github.com/OneSignal/OneSignal-Flutter-SDK

Expand Down

0 comments on commit 6095fd4

Please sign in to comment.