Skip to content

Commit 770708f

Browse files
authored
Release/8.0.0 (#1146)
### Breaking Changes * Remove embedding v1 support (#1141) via Toni Rico (@tonidero) If you're using embedding v1, please check how to migrate in the [official flutter docs](https://docs.flutter.dev/release/breaking-changes/plugin-api-migration#upgrade-steps). ### Bugfixes * Refine StoreKitVersion logging in configure function (#1143) via Will Taylor (@fire-at-will) ### Other Changes * v7-MIGRATION.md typo fix (#1144) via Will Taylor (@fire-at-will)
1 parent 7c39d13 commit 770708f

File tree

14 files changed

+29
-16
lines changed

14 files changed

+29
-16
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.0.2
1+
8.0.0

CHANGELOG-LATEST.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
### Breaking Changes
2+
* Remove embedding v1 support (#1141) via Toni Rico (@tonidero)
3+
4+
If you're using embedding v1, please check how to migrate in the [official flutter docs](https://docs.flutter.dev/release/breaking-changes/plugin-api-migration#upgrade-steps).
15
### Bugfixes
2-
* Parse recordPurchase response (#1138) via Will Taylor (@fire-at-will)
3-
### Dependency Updates
4-
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 13.0.1 (#1136) via RevenueCat Git Bot (@RCGitBot)
6+
* Refine StoreKitVersion logging in configure function (#1143) via Will Taylor (@fire-at-will)
57
### Other Changes
6-
* Update iOS deployment target in readme (#1137) via Will Taylor (@fire-at-will)
8+
* v7-MIGRATION.md typo fix (#1144) via Will Taylor (@fire-at-will)

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 8.0.0
2+
### Breaking Changes
3+
* Remove embedding v1 support (#1141) via Toni Rico (@tonidero)
4+
5+
If you're using embedding v1, please check how to migrate in the [official flutter docs](https://docs.flutter.dev/release/breaking-changes/plugin-api-migration#upgrade-steps).
6+
### Bugfixes
7+
* Refine StoreKitVersion logging in configure function (#1143) via Will Taylor (@fire-at-will)
8+
### Other Changes
9+
* v7-MIGRATION.md typo fix (#1144) via Will Taylor (@fire-at-will)
10+
111
## 7.0.2
212
### Bugfixes
313
* Parse recordPurchase response (#1138) via Will Taylor (@fire-at-will)

VERSIONS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
| Version | iOS version | Android version | Common files version | Play Billing Library version |
22
|---------------|-------------|-----------------|----------------------|------------------------------|
3+
| 8.0.0 | [5.2.3](https://github.com/RevenueCat/purchases-ios/releases/tag/5.2.3) | [8.4.0](https://github.com/RevenueCat/purchases-android/releases/tag/8.4.0) | [13.0.1](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/13.0.1) | [7.0.0](https://developer.android.com/google/play/billing/release-notes) |
34
| 7.0.2 | [5.2.3](https://github.com/RevenueCat/purchases-ios/releases/tag/5.2.3) | [8.4.0](https://github.com/RevenueCat/purchases-android/releases/tag/8.4.0) | [13.0.1](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/13.0.1) | [7.0.0](https://developer.android.com/google/play/billing/release-notes) |
45
| 7.0.1 | [5.2.2](https://github.com/RevenueCat/purchases-ios/releases/tag/5.2.2) | [8.3.1](https://github.com/RevenueCat/purchases-android/releases/tag/8.3.1) | [13.0.0](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/13.0.0) | [7.0.0](https://developer.android.com/google/play/billing/release-notes) |
56
| 7.0.0 | 5.2.2 | 8.3.1 | 13.0.0 | |

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.revenuecat.purchases_flutter'
2-
version '7.0.2'
2+
version '8.0.0'
33

44
buildscript {
55
ext.kotlin_version = '1.8.22'

android/src/main/java/com/revenuecat/purchases_flutter/PurchasesFlutterPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class PurchasesFlutterPlugin implements FlutterPlugin, MethodCallHandler,
6060
private final Handler handler = new Handler(Looper.getMainLooper());
6161

6262
private static final String PLATFORM_NAME = "flutter";
63-
private static final String PLUGIN_VERSION = "7.0.2";
63+
private static final String PLUGIN_VERSION = "8.0.0";
6464

6565
@Override
6666
public void onAttachedToEngine(@NonNull FlutterPluginBinding binding) {

ios/Classes/PurchasesFlutterPlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ - (NSString *)platformFlavor {
678678
}
679679

680680
- (NSString *)platformFlavorVersion {
681-
return @"7.0.2";
681+
return @"8.0.0";
682682
}
683683

684684
@end

ios/purchases_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'purchases_flutter'
6-
s.version = '7.0.2'
6+
s.version = '8.0.0'
77
s.summary = 'Cross-platform subscriptions framework for Flutter.'
88
s.description = <<-DESC
99
Client for the RevenueCat subscription and purchase tracking system, making implementing in-app subscriptions in Flutter easy - receipt validation and status tracking included!

macos/purchases_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'purchases_flutter'
7-
s.version = '7.0.2'
7+
s.version = '8.0.0'
88
s.summary = 'Cross-platform subscriptions framework for Flutter.'
99
s.description = <<-DESC
1010
Client for the RevenueCat subscription and purchase tracking system, making implementing in-app subscriptions in Flutter easy - receipt validation and status tracking included!

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: purchases_flutter
22
description: Flutter in-app purchases and subscriptions made easy. The plugin supports iOS, macOS and Android.
3-
version: 7.0.2
3+
version: 8.0.0
44
homepage: https://www.revenuecat.com/
55
repository: https://github.com/RevenueCat/purchases-flutter
66
issue_tracker: https://github.com/RevenueCat/purchases-flutter/issues

0 commit comments

Comments
 (0)