Skip to content

Commit

Permalink
update version to 3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
x401om committed Dec 5, 2024
1 parent 0c79f15 commit 9229e6f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# 3.2.3
- TODO:
- AdaptyUI: Internal improvements to paywall rendering
- Fixed an issue where `isActivated()` method returned incorrect value
- Fixed an issue where `content` field of `AdaptyUIDialog` was not displaying correctly
- Fixed an issue with `subscriptionUpdateParams` wrong serialization
- Added `setupAfterHotRestart` method to Adapty and AdaptyUI which allows you to initialize the plugin after hot restart. Please check `isActivated` before calling this method. Please consider using this method in debug builds only to avoid any unexpected issues in release builds.

# 3.2.2
- updated `isActivated()` method to return true if only native SDK is activated
- added missing models exports

# 3.2.1
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.3-SNAPSHOT"
private const val VERSION = "3.2.3"

fun registerWith(registrar: PluginRegistry.Registrar) {
val instance = AdaptyFlutterPlugin();
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.3-SNAPSHOT
version: 3.2.3
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.3-SNAPSHOT'
s.version = '3.2.3'
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_version.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const String adaptySDKVersion = '3.2.3-SNAPSHOT';
const String adaptySDKVersion = '3.2.3';
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.3-SNAPSHOT
version: 3.2.3
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 9229e6f

Please sign in to comment.