Skip to content

Commit

Permalink
Release 3.9.2 (RevenueCat#303)
Browse files Browse the repository at this point in the history
* Release 3.9.2

* Updates changelog

Co-authored-by: Cesar de la Vega <cesarvegaro@gmail.com>
  • Loading branch information
beylmk and vegaro authored Jan 19, 2022
1 parent 7adc14e commit a5161d9
Show file tree
Hide file tree
Showing 10 changed files with 46 additions and 26 deletions.
11 changes: 6 additions & 5 deletions CHANGELOG-LATEST.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 3.9.1
## 3.9.2

- Fixed a crash in `getOfferings` on Android for products that don't have intro pricing
https://github.com/RevenueCat/purchases-flutter/pull/294
- Update Freezed dependency to 1.1.0, updated freezed-annotation and other dependencies
https://github.com/RevenueCat/purchases-flutter/pull/297
- Fix `purchasePackage`, `purchaseProduct`, `purchaseDiscountedPackage` and `purchaseDiscountedProduct` crashes due to a wrong type.
- Added missing freezed files.
https://github.com/RevenueCat/purchases-flutter/pull/301
- CI fail if missing freezed files
https://github.com/RevenueCat/purchases-flutter/pull/302
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 3.9.2

- Fix `purchasePackage`, `purchaseProduct`, `purchaseDiscountedPackage` and `purchaseDiscountedProduct` crashes due to a wrong type.
- Added missing freezed files.
https://github.com/RevenueCat/purchases-flutter/pull/301
- CI fail if missing freezed files
https://github.com/RevenueCat/purchases-flutter/pull/302

## 3.9.1

- Fixed a crash in `getOfferings` on Android for products that don't have intro pricing
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 |
|---------|-------------|-----------------|----------------------|
| 3.9.2 | 3.13.2 | 4.6.1 | 1.11.2 |
| 3.9.1 | 3.13.2 | 4.6.1 | 1.11.2 |
| 3.9.0 | 3.13.1 | 4.6.0 | 1.11.1 |
| 3.8.0 | 3.13.1 | 4.6.0 | 1.11.1 |
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 '3.9.1'
version '3.9.2'

buildscript {
ext.kotlin_version = '1.3.72'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class PurchasesFlutterPlugin implements FlutterPlugin, MethodCallHandler,
@Nullable private Activity activity;

private static final String PLATFORM_NAME = "flutter";
private static final String PLUGIN_VERSION = "3.9.1";
private static final String PLUGIN_VERSION = "3.9.2";

/**
* Plugin registration.
Expand Down
40 changes: 25 additions & 15 deletions fastlane/README.md
Original file line number Diff line number Diff line change
@@ -1,46 +1,56 @@
fastlane documentation
================
----

# Installation

Make sure you have the latest version of the Xcode command line tools installed:

```
```sh
xcode-select --install
```

Install _fastlane_ using
```
[sudo] gem install fastlane -NV
```
or alternatively using `brew install fastlane`
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)

# Available Actions

### bump_and_update_changelog

```sh
[bundle exec] fastlane bump_and_update_changelog
```
fastlane bump_and_update_changelog
```

Increment build number and update changelog

----


## iOS

### ios bump

```sh
[bundle exec] fastlane ios bump
```
fastlane ios bump
```

Increment build number

----


## Android

### android bump

```sh
[bundle exec] fastlane android bump
```
fastlane android bump
```

Increment build number

----

This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).

The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
2 changes: 1 addition & 1 deletion ios/Classes/PurchasesFlutterPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ - (NSString *)platformFlavor {
}

- (NSString *)platformFlavorVersion {
return @"3.9.1";
return @"3.9.2";
}

@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 = '3.9.1'
s.version = '3.9.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 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 = '3.9.1'
s.version = '3.9.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
Expand Up @@ -2,7 +2,7 @@ name: purchases_flutter
description: A Flutter plugin that makes it simple to add and manage in-app
purchases (IAP) and subscriptions. Supports Android, iOS, macOS, iPadOS, and
watchOS.
version: 3.9.1
version: 3.9.2
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 a5161d9

Please sign in to comment.