Skip to content

Commit

Permalink
Preparing for version 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaro committed Sep 3, 2019
1 parent 4c1af4b commit 55af5e7
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 0.3.2

- Fixes `expirationDate` in EntitlementInfo for iOS.

## 0.3.1

- Fixes crash when there's a trial period and not an introductory price on Android.
- Fixes crash when there's a trial period and not an introductory price on Android.

## 0.3.0

Expand All @@ -17,7 +21,7 @@
## 0.2.1

- Makes some changes to the introductory pricing due to some inconsistencies introduced in 0.2.0.
Introductory pricing is now an object part of the product.
Introductory pricing is now an object part of the product.

## 0.2.0

Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1. Update to the latest SDK versions in purchases_flutter.podspec and build.gradle.
1. Run `./scripts/download-purchases-common.sh 0.1.3`
1. Run `./scripts/download-purchases-common.sh 0.1.4`
1. Run `flutter format`
1. Update versions in VERSIONS.md.
1. Update version in pubspec.yaml, purchases_flutter.podspec.
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 |
|---------|-------------|-----------------|----------------------|
| 0.3.2 | 2.6.0 | 2.4.0 | 0.1.4 |
| 0.3.1 | 2.6.0 | 2.4.0 | 0.1.3 |
| 0.3.0 | 2.6.0 | 2.4.0 | 0.1.3 |
| 0.2.2 | 2.5.0 | 2.3.1 | 0.1.2 |
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/.common_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.3
0.1.4
2 changes: 1 addition & 1 deletion ios/Classes/Common/RCEntitlementInfo+HybridAdditions.m
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ - (NSDictionary *)dictionary

jsonDict[@"latestPurchaseDate"] = stringFromDate(self.latestPurchaseDate);
jsonDict[@"originalPurchaseDate"] = stringFromDate(self.originalPurchaseDate);
jsonDict[@"expirationDate"] = stringFromDate(self.originalPurchaseDate) ?: [NSNull null];
jsonDict[@"expirationDate"] = stringFromDate(self.expirationDate) ?: [NSNull null];

switch (self.store) {
case RCAppStore:
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 = '0.3.1'
s.version = '0.3.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: Client for the RevenueCat subscription and purchase tracking system, making implementing in-app subscriptions in Flutter easy - receipt validation and status tracking included!
version: 0.3.1
version: 0.3.2
authors:
- RevenueCat <support@revenuecat.com>
homepage: https://www.revenuecat.com/
Expand Down

0 comments on commit 55af5e7

Please sign in to comment.