Skip to content

Commit

Permalink
prepare for release 2.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vladd-g committed Sep 3, 2024
1 parent 0aad0a8 commit f357b8e
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 2.10.3
- Support for Flutter 3.22+

# 2.10.2
- Support for Flutter 3.22+

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class AdaptyFlutterPlugin : FlutterPlugin, ActivityAware, MethodCallHandler {

companion object {
private const val CHANNEL_NAME = "flutter.adapty.com/adapty"
private const val VERSION = "2.10.2"
private const val VERSION = "2.10.3"

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 @@ -382,7 +382,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 2.10.2;
MARKETING_VERSION = 2.10.3;
PRODUCT_BUNDLE_IDENTIFIER = com.adapty.adaptydemoapp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
Expand Down Expand Up @@ -523,7 +523,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 2.10.2;
MARKETING_VERSION = 2.10.3;
PRODUCT_BUNDLE_IDENTIFIER = com.adapty.adaptydemoapp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
Expand Down Expand Up @@ -558,7 +558,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 2.10.2;
MARKETING_VERSION = 2.10.3;
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>2.10.2</string>
<string>2.10.3</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: 2.10.2
version: 2.10.3
publish_to: none

environment:
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/SwiftAdaptyFlutterPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class SwiftAdaptyFlutterPlugin: NSObject, FlutterPlugin {
return encoder
}()

private static let version = "2.10.2"
private static let version = "2.10.3"
private static var channel: FlutterMethodChannel?
private static let pluginInstance = SwiftAdaptyFlutterPlugin()

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 = '2.10.2'
s.version = '2.10.3'
s.summary = 'Adapty flutter plugin.'
s.description = <<-DESC
A new flutter plugin project.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/adapty.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Adapty {

Adapty._internal();

static const String sdkVersion = '2.10.2';
static const String sdkVersion = '2.10.3';

static const String _channelName = 'flutter.adapty.com/adapty';
static const MethodChannel _channel = const MethodChannel(_channelName);
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: 2.10.2
version: 2.10.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 f357b8e

Please sign in to comment.