Skip to content

Commit

Permalink
update version to 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
x401om committed Nov 22, 2024
1 parent 1221d4d commit dcc6867
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.2.2
- updated `isActivated()` method to return true if only native SDK is activated
- added missing models exports

# 3.2.1
- `AdaptyErrorCode` change `final` to `const`
- [Android] Plugin fix
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class AdaptyFlutterPlugin : FlutterPlugin, ActivityAware, MethodCallHandler {

companion object {
private const val CHANNEL_NAME = "flutter.adapty.com/adapty"
private const val VERSION = "3.2.1"
private const val VERSION = "3.2.2"

fun registerWith(registrar: PluginRegistry.Registrar) {
val instance = AdaptyFlutterPlugin();
Expand Down
6 changes: 3 additions & 3 deletions example/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 3.2.0;
MARKETING_VERSION = 3.2.2;
PRODUCT_BUNDLE_IDENTIFIER = com.adapty.adaptydemoapp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
Expand Down Expand Up @@ -519,7 +519,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 3.2.0;
MARKETING_VERSION = 3.2.2;
PRODUCT_BUNDLE_IDENTIFIER = com.adapty.adaptydemoapp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
Expand Down Expand Up @@ -554,7 +554,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 3.2.0;
MARKETING_VERSION = 3.2.2;
PRODUCT_BUNDLE_IDENTIFIER = com.adapty.adaptydemoapp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.2.1</string>
<string>3.2.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: adapty_flutter_example
description: Demonstrates how to use the adapty_flutter plugin.
version: 3.2.1
version: 3.2.2
publish_to: none

environment:
Expand Down
2 changes: 1 addition & 1 deletion ios/adapty_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'adapty_flutter'
s.version = '3.2.1'
s.version = '3.2.2'
s.summary = 'Adapty flutter plugin.'
s.description = <<-DESC
Win back churned subscribers in your iOS app.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/adapty.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Adapty {

Adapty._internal();

static const String sdkVersion = '3.2.1';
static const String sdkVersion = '3.2.2';

static const String _channelName = 'flutter.adapty.com/adapty';
static const MethodChannel _channel = const MethodChannel(_channelName);
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/adapty_configuration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class AdaptyConfiguration {

AdaptyLogLevel? _logLevel = AdaptyLogLevel.info;
String _crossPlatformSDKName = 'flutter';
String _crossPlatformSDKVersion = '3.2.1';
String _crossPlatformSDKVersion = '3.2.2';

/// Initializes the configuration with the given API key.
///
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: adapty_flutter
description: Adapty SDK is an open-source framework that makes implementing in-app subscriptions in Flutter applications fast and easy. It’s 100% open-source and lightweight.
version: 3.2.1
version: 3.2.2
homepage: https://adapty.io/
repository: https://github.com/adaptyteam/AdaptySDK-Flutter
issue_tracker: https://github.com/adaptyteam/AdaptySDK-Flutter/issues
Expand Down

0 comments on commit dcc6867

Please sign in to comment.