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 1.4.3 #128

Merged
merged 6 commits into from
Nov 4, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
bumped version number to 1.4.3
  • Loading branch information
aboedo committed Nov 4, 2020
commit fe4b10fb1ef653f180003033ef8d4cb73b6b62c2
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.4.3

- Explicitly added `Purchases` framework to podspec so it gets correctly linked in the plugin pod. Fixed mapping of xcconfig files in Runner example.
https://github.com/RevenueCat/purchases-flutter/pull/128

## 1.4.2

- Moved from valid architectures to excluded architectures in the Podfile, following Flutter's example.
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 |
|---------|-------------|-----------------|----------------------|
| 1.4.3 | 3.7.5 | 3.5.2 | 1.4.5 |
| 1.4.2 | 3.7.5 | 3.5.2 | 1.4.5 |
| 1.4.1 | 3.7.5 | 3.5.2 | 1.4.5 |
| 1.4.0 | 3.7.2 | 3.5.2 | 1.4.4 |
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 '1.4.2'
version '1.4.3'

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

private static final String PLATFORM_NAME = "flutter";
private static final String PLUGIN_VERSION = "1.4.2";
private static final String PLUGIN_VERSION = "1.4.3";

/**
* Plugin registration.
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PODS:
- Flutter (1.0.0)
- Purchases (3.7.5):
- PurchasesCoreSwift (= 3.7.5)
- purchases_flutter (1.4.2):
- purchases_flutter (1.4.3):
- Flutter
- PurchasesHybridCommon (= 1.4.5)
- PurchasesCoreSwift (3.7.5)
Expand Down Expand Up @@ -34,7 +34,7 @@ SPEC CHECKSUMS:
e2e: 967b9b1fc533b7636a3b7a719f840c27f301fe1f
Flutter: 0e3d915762c693b495b44d77113d4970485de6ec
Purchases: 7ebce9418bc16732c3c3bb4b6ff7e7e397de024e
purchases_flutter: f6840d0fe8517713ba5eb5b5037ee07667226777
purchases_flutter: 6c11772b7eb451eb9c07541bf2335ea435ea1fe6
PurchasesCoreSwift: 50636e307c1ab76c7a7894a87d042665f2fe0be9
PurchasesHybridCommon: b1dd1c5125ccf99b9e62b5974d0e5145895e8b87

Expand Down
2 changes: 1 addition & 1 deletion example/macos/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PODS:
- FlutterMacOS (1.0.0)
- Purchases (3.7.5):
- PurchasesCoreSwift (= 3.7.5)
- purchases_flutter (1.4.2):
- purchases_flutter (1.4.3):
- FlutterMacOS
- PurchasesHybridCommon (= 1.4.5)
- PurchasesCoreSwift (3.7.5)
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/PurchasesFlutterPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ - (NSString *)platformFlavor {
}

- (NSString *)platformFlavorVersion {
return @"1.4.2";
return @"1.4.3";
}

@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 = '1.4.2'
s.version = '1.4.3'
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 = '1.4.2'
s.version = '1.4.3'
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: A Flutter plugin that makes implementing in-app subscriptions for iOS and Android simple – receipt validation and status tracking included!
version: 1.4.2
version: 1.4.3
homepage: https://www.revenuecat.com/
repository: https://github.com/RevenueCat/purchases-flutter
issue_tracker: https://github.com/RevenueCat/purchases-flutter/issues
Expand Down