Skip to content

Commit

Permalink
Version bump for 6.3.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
NachoSoto committed Nov 13, 2023
1 parent a43f0a5 commit cefa59e
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 15 deletions.
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
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

0 comments on commit cefa59e

Please sign in to comment.