Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/6.3.0-beta.1 #862

Closed
wants to merge 2 commits into from
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 @@
6.3.0-SNAPSHOT
6.3.0-beta.1
28 changes: 20 additions & 8 deletions CHANGELOG-LATEST.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
### Dependency Updates
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 7.2.0 (#844) via RevenueCat Git Bot (@RCGitBot)
* [iOS 4.29.0](https://github.com/RevenueCat/purchases-ios/releases/tag/4.29.0)
* [iOS 4.28.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.28.1)
* Bump cocoapods from 1.13.0 to 1.14.2 (#843) via dependabot[bot] (@dependabot[bot])
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 7.1.1 (#840) via RevenueCat Git Bot (@RCGitBot)
* [iOS 4.29.0](https://github.com/RevenueCat/purchases-ios/releases/tag/4.29.0)
* [iOS 4.28.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.28.1)
### New Features
* 📱 Initial support for cross-platform RevenueCat Paywalls 🐾 🧱 (#852)

#### Instructions:
- Update `purchases-flutter` in your `pubspec.yaml`:
```yaml
dependencies:
purchases_flutter: 6.3.0-beta.1
```

#### Usage:
```dart
await Purchases.presentPaywallIfNeeded("pro");
```

#### Limitations:

- Currently only full screen paywalls are supported
- There is no way to detect paywall events other than using `addCustomerInfoUpdateListener`
- Android's `minSdkVersion` is temporarily increased from `19` to `24` to support paywalls. This will be reverted in a future release as we split `purchases_flutter` and `purchases_flutter_ui`
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 6.3.0-beta.1
### New Features
* 📱 Initial support for cross-platform RevenueCat Paywalls 🐾 🧱 (#852)

#### Instructions:
- Update `purchases-flutter` in your `pubspec.yaml`:
```yaml
dependencies:
purchases_flutter: 6.3.0-beta.1
```

#### Usage:
```dart
await Purchases.presentPaywallIfNeeded("pro");
```

#### Limitations:

- Currently only full screen paywalls are supported
- There is no way to detect paywall events other than using `addCustomerInfoUpdateListener`
- Android's `minSdkVersion` is temporarily increased from `19` to `24` to support paywalls. This will be reverted in a future release as we split `purchases_flutter` and `purchases_flutter_ui`
## 6.2.0
### Dependency Updates
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 7.2.0 (#844) via RevenueCat Git Bot (@RCGitBot)
Expand Down
1 change: 1 addition & 0 deletions VERSIONS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| Version | iOS version | Android version | Common files version |
|---------|-------------|-----------------|----------------------|
| 6.3.0-beta.1 | 4.30.4 | 7.2.1 | 7.4.0-beta.1 |
| 6.2.0 | 4.29.0 | 7.0.1 | 7.2.0 |
| 6.1.0 | 4.28.0 | 7.0.1 | 7.1.0 |
| 6.0.0 | 4.27.0 | 7.0.0 | 7.0.0 |
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 '6.3.0-SNAPSHOT'
version '6.3.0-beta.1'

buildscript {
ext.kotlin_version = '1.7.21'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,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 = "6.3.0-SNAPSHOT";
private static final String PLUGIN_VERSION = "6.3.0-beta.1";

/**
* Plugin registration.
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/PurchasesFlutterPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ - (NSString *)platformFlavor {
}

- (NSString *)platformFlavorVersion {
return @"6.3.0-SNAPSHOT";
return @"6.3.0-beta.1";
}

@end
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 = '6.3.0-SNAPSHOT'
s.version = '6.3.0-beta.1'
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 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 = '6.3.0-SNAPSHOT'
s.version = '6.3.0-beta.1'
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: 6.3.0-SNAPSHOT
version: 6.3.0-beta.1
homepage: https://www.revenuecat.com/
repository: https://github.com/RevenueCat/purchases-flutter
issue_tracker: https://github.com/RevenueCat/purchases-flutter/issues
Expand Down