Skip to content

Commit

Permalink
update version to 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vladd-g committed Nov 20, 2024
1 parent d5f96a7 commit 85208f7
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 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.1
- `AdaptyErrorCode` change `final` to `const`
- [Android] Plugin fix

# 3.2.0

🎉 Meet the Adapty Flutter SDK 3.2.0!
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-SNAPSHOT"
private const val VERSION = "3.2.1"

fun registerWith(registrar: PluginRegistry.Registrar) {
val instance = AdaptyFlutterPlugin();
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.0</string>
<string>3.2.1</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.0
version: 3.2.1
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.0'
s.version = '3.2.1'
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-SNAPSHOT';
static const String sdkVersion = '3.2.1';

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-SNAPSHOT';
String _crossPlatformSDKVersion = '3.2.1';

/// 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.0
version: 3.2.1
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 85208f7

Please sign in to comment.