Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.9.8
9.9.8-add-ons-beta.2
15 changes: 5 additions & 10 deletions CHANGELOG-LATEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,10 @@
> If you don't have any login system in your app, please make sure your one-time purchase products have been correctly configured in the RevenueCat dashboard as either consumable or non-consumable. If they're incorrectly configured as consumables, RevenueCat will consume these purchases. This means that users won't be able to restore them from version 9.0.0 onward.
> Non-consumables are products that are meant to be bought only once, for example, lifetime subscriptions.

> [!WARNING]
> The subscription add-on features in this release are currently in beta and are subject to change in the future without notice.

## RevenueCat SDK
### 📦 Dependency Updates
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 17.19.1 (#1548) via RevenueCat Git Bot (@RCGitBot)
* [Android 9.14.1](https://github.com/RevenueCat/purchases-android/releases/tag/9.14.1)
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 17.19.0 (#1547) via RevenueCat Git Bot (@RCGitBot)
* [Android 9.14.1](https://github.com/RevenueCat/purchases-android/releases/tag/9.14.1)
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 17.18.1 (#1543) via RevenueCat Git Bot (@RCGitBot)
* [Android 9.14.1](https://github.com/RevenueCat/purchases-android/releases/tag/9.14.1)
### RevenueCat SDK

### 🔄 Other Changes
* Bump fastlane-plugin-revenuecat_internal from `1e3e3fd` to `083ced9` (#1544) via dependabot[bot] (@dependabot[bot])
- Support Purchasing Packages as Add-Ons (#1545)
- Updates the add-ons Flutter SDK to use version 9.9.8 of the RevenueCat Flutter SDK
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 9.9.8-add-ons-beta.2
> [!WARNING]
> If you don't have any login system in your app, please make sure your one-time purchase products have been correctly configured in the RevenueCat dashboard as either consumable or non-consumable. If they're incorrectly configured as consumables, RevenueCat will consume these purchases. This means that users won't be able to restore them from version 9.0.0 onward.
> Non-consumables are products that are meant to be bought only once, for example, lifetime subscriptions.

> [!WARNING]
> The subscription add-on features in this release are currently in beta and are subject to change in the future without notice.

### RevenueCat SDK

- Support Purchasing Packages as Add-Ons (#1545)
- Updates the add-ons Flutter SDK to use version 9.9.8 of the RevenueCat Flutter SDK

## 9.9.8
> [!WARNING]
> If you don't have any login system in your app, please make sure your one-time purchase products have been correctly configured in the RevenueCat dashboard as either consumable or non-consumable. If they're incorrectly configured as consumables, RevenueCat will consume these purchases. This means that users won't be able to restore them from version 9.0.0 onward.
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.revenuecat.purchases_flutter'
version '9.9.8'
version '9.9.8-add-ons-beta.2'

buildscript {
ext.kotlin_version = '1.8.22'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class PurchasesFlutterPlugin implements FlutterPlugin, MethodCallHandler,
private final Handler handler = new Handler(Looper.getMainLooper());

private static final String PLATFORM_NAME = "flutter";
private static final String PLUGIN_VERSION = "9.9.8";
private static final String PLUGIN_VERSION = "9.9.8-add-ons-beta.2";

@Override
public void onAttachedToEngine(@NonNull FlutterPluginBinding binding) {
Expand Down
2 changes: 1 addition & 1 deletion ios/purchases_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 = 'purchases_flutter'
s.version = '9.9.8'
s.version = '9.9.8-add-ons-beta.2'
s.summary = 'Cross-platform subscriptions framework for Flutter.'
s.description = <<-DESC
Client for the RevenueCat subscription and purchase tracking system, making implementing in-app subscriptions in Flutter easy - receipt validation and status tracking included!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ - (NSString *)platformFlavor {
}

- (NSString *)platformFlavorVersion {
return @"9.9.8";
return @"9.9.8-add-ons-beta.2";
}

- (NSError *)createUnsupportedErrorWithDescription:(NSString *)description {
Expand Down
2 changes: 1 addition & 1 deletion lib/web/purchases_flutter_web.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class PurchasesFlutterPlugin {
static final _configurationErrorCode = '${PurchasesErrorCode.configurationError.index}';
static const _purchasesHybridMappingsVersion = '17.19.1';
static const _platformName = 'flutter';
static const _pluginVersion = '9.9.8';
static const _pluginVersion = '9.9.8-add-ons-beta.2';
static const _purchasesHybridMappingsUrl =
'https://cdn.jsdelivr.net/npm/@revenuecat/purchases-js-hybrid-mappings@$_purchasesHybridMappingsVersion/dist/index.umd.js';

Expand Down
2 changes: 1 addition & 1 deletion macos/purchases_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 = 'purchases_flutter'
s.version = '9.9.8'
s.version = '9.9.8-add-ons-beta.2'
s.summary = 'Cross-platform subscriptions framework for Flutter.'
s.description = <<-DESC
Client for the RevenueCat subscription and purchase tracking system, making implementing in-app subscriptions in Flutter easy - receipt validation and status tracking included!
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: purchases_flutter
description: Flutter in-app purchases and subscriptions made easy. The plugin supports iOS, macOS and Android.
version: 9.9.8
version: 9.9.8-add-ons-beta.2
homepage: https://www.revenuecat.com/
repository: https://github.com/RevenueCat/purchases-flutter
issue_tracker: https://github.com/RevenueCat/purchases-flutter/issues
Expand Down
2 changes: 1 addition & 1 deletion purchases_ui_flutter/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.revenuecat.purchases_ui_flutter'
version '9.9.8'
version '9.9.8-add-ons-beta.2'

buildscript {
ext.kotlin_version = '1.9.20'
Expand Down
2 changes: 1 addition & 1 deletion purchases_ui_flutter/ios/purchases_ui_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 = 'purchases_ui_flutter'
s.version = '9.9.8'
s.version = '9.9.8-add-ons-beta.2'
s.summary = 'Flutter plugin that integrates RevenueCat Paywalls'
s.description = <<-DESC
Flutter plugin that integrates RevenueCat Paywalls
Expand Down
2 changes: 1 addition & 1 deletion purchases_ui_flutter/macos/purchases_ui_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 = 'purchases_ui_flutter'
s.version = '9.9.8'
s.version = '9.9.8-add-ons-beta.2'
s.summary = 'Flutter plugin that integrates RevenueCat Paywalls'
s.description = <<-DESC
Flutter plugin that integrates RevenueCat Paywalls
Expand Down
4 changes: 2 additions & 2 deletions purchases_ui_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: purchases_ui_flutter
description: "Flutter plugin that integrates RevenueCat Paywalls. This plugin supports iOS and Android."
version: 9.9.8
version: 9.9.8-add-ons-beta.2
homepage: https://www.revenuecat.com/
issue_tracker: https://github.com/RevenueCat/purchases-flutter/issues
documentation: https://docs.revenuecat.com/docs
Expand All @@ -11,7 +11,7 @@ environment:
flutter: '>=3.27.0'

dependencies:
purchases_flutter: ^9.9.8
purchases_flutter: ^9.9.8-add-ons-beta.2
flutter:
sdk: flutter
plugin_platform_interface: ^2.0.2
Expand Down