Skip to content

Commit

Permalink
Release/3.7.0 (#276)
Browse files Browse the repository at this point in the history
* Release 3.7.0
  • Loading branch information
taquitos committed Nov 23, 2021
1 parent 4a1a12f commit 6860cd4
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 27 deletions.
9 changes: 3 additions & 6 deletions CHANGELOG-LATEST.md
@@ -1,7 +1,4 @@
## 3.6.0
## 3.7.0

- Bump`purchases-hybrid-common` to `1.10.0` [Changelog here](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/1.10.0)
- Bump `purchases-ios` to `3.13.0` ([Changelog here](https://github.com/RevenueCat/purchases-ios/releases/3.13.0))
- Bump `purchases-android` to `4.4.0` ([Changelog here](https://github.com/RevenueCat/purchases-android/releases/4.4.0))
- Added support for Airship integration via `setAirshipChannelID`
https://github.com/RevenueCat/purchases-flutter/pull/272
- Bump`purchases-hybrid-common` to `1.11.0` [Changelog here](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/1.11.0)
Add ownershipType to EntitlementInfo
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
## 3.7.0

- Bump`purchases-hybrid-common` to `1.11.0` [Changelog here](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/1.11.0)
Add ownershipType to EntitlementInfo

## 3.6.0

- Bump`purchases-hybrid-common` to `1.10.0` [Changelog here](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/1.10.0)
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
@@ -1,5 +1,5 @@
1. Start a branch `release/x.x.x`
1. Update to the latest SDK versions in ios/purchases_flutter.podspec, mac/purchases_flutter.podspec and build.gradle.
1. Update to the latest SDK versions in ios/purchases_flutter.podspec, macos/purchases_flutter.podspec and android/build.gradle.
1. Run `flutter format .`
1. Update versions in VERSIONS.md.
1. Update CHANGELOG-LATEST.md with the changes for the current version (to be used by Fastlane for the github release notes)
Expand Down
3 changes: 2 additions & 1 deletion VERSIONS.md
@@ -1,6 +1,7 @@
| Version | iOS version | Android version | Common files version |
|---------|-------------|-----------------|----------------------|
| 3.6.0 | 3.13.0 | 4.4.0 | 1.10.0 |
| 3.7.0 | 3.13.0 | 4.4.0 | 1.11.0 |
| 3.6.0 | 3.13.0 | 4.4.0 | 1.10.0 |
| 3.5.0 | 3.12.8 | 4.3.3 | 1.9.3 |
| 3.4.6 | 3.12.6 | 4.3.3 | 1.9.2 |
| 3.4.5 | 3.12.3 | 4.3.1 | 1.9.1 |
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
@@ -1,5 +1,5 @@
group 'com.revenuecat.purchases_flutter'
version '3.6.0'
version '3.7.0'

buildscript {
ext.kotlin_version = '1.3.72'
Expand Down Expand Up @@ -38,5 +38,5 @@ android {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "com.revenuecat.purchases:purchases-hybrid-common:1.10.0"
implementation "com.revenuecat.purchases:purchases-hybrid-common:1.11.0"
}
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.6.0";
private static final String PLUGIN_VERSION = "3.7.0";

/**
* Plugin registration.
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/PurchasesFlutterPlugin.m
Expand Up @@ -501,7 +501,7 @@ - (NSString *)platformFlavor {
}

- (NSString *)platformFlavorVersion {
return @"3.6.0";
return @"3.7.0";
}

@end
4 changes: 2 additions & 2 deletions ios/purchases_flutter.podspec
Expand Up @@ -3,7 +3,7 @@
#
Pod::Spec.new do |s|
s.name = 'purchases_flutter'
s.version = '3.6.0'
s.version = '3.7.0'
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 All @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'PurchasesHybridCommon', '1.10.0'
s.dependency 'PurchasesHybridCommon', '1.11.0'
s.ios.deployment_target = '9.0'
s.swift_version = '5.0'

Expand Down
4 changes: 2 additions & 2 deletions macos/purchases_flutter.podspec
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'purchases_flutter'
s.version = '3.6.0'
s.version = '3.7.0'
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 All @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'FlutterMacOS'
s.dependency 'PurchasesHybridCommon', '1.10.0'
s.dependency 'PurchasesHybridCommon', '1.11.0'
s.platform = :osx, '10.12'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.swift_version = '5.0'
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,6 +1,6 @@
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.6.0
version: 3.7.0
homepage: https://www.revenuecat.com/
repository: https://github.com/RevenueCat/purchases-flutter
issue_tracker: https://github.com/RevenueCat/purchases-flutter/issues
Expand Down
10 changes: 5 additions & 5 deletions revenuecat_examples/MagicWeather/ios/Podfile.lock
Expand Up @@ -2,11 +2,11 @@ PODS:
- Flutter (1.0.0)
- Purchases (3.13.0):
- PurchasesCoreSwift (= 3.13.0)
- purchases_flutter (3.6.0):
- purchases_flutter (3.7.0):
- Flutter
- PurchasesHybridCommon (= 1.10.0)
- PurchasesHybridCommon (= 1.11.0)
- PurchasesCoreSwift (3.13.0)
- PurchasesHybridCommon (1.10.0):
- PurchasesHybridCommon (1.11.0):
- Purchases (= 3.13.0)

DEPENDENCIES:
Expand All @@ -28,9 +28,9 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
Purchases: a545d402454bc9395495cceaf0e893360670e0ad
purchases_flutter: 9d3126abd6a7ff95a19334468e4125d6f391c06e
purchases_flutter: f2c2865aa83c7a094ca067a6834395b0de5573d2
PurchasesCoreSwift: e7f7267a6dc526da226baad19c61e8977fa664b4
PurchasesHybridCommon: a3282e900a2a05eb6c52acc4c72fb4f931160f5a
PurchasesHybridCommon: cc91e9f07061de603a355f174cf92fb89f333a92

PODFILE CHECKSUM: a75497545d4391e2d394c3668e20cfb1c2bbd4aa

Expand Down
10 changes: 5 additions & 5 deletions revenuecat_examples/purchase_tester/ios/Podfile.lock
Expand Up @@ -4,11 +4,11 @@ PODS:
- Flutter
- Purchases (3.13.0):
- PurchasesCoreSwift (= 3.13.0)
- purchases_flutter (3.6.0):
- purchases_flutter (3.7.0):
- Flutter
- PurchasesHybridCommon (= 1.10.0)
- PurchasesHybridCommon (= 1.11.0)
- PurchasesCoreSwift (3.13.0)
- PurchasesHybridCommon (1.10.0):
- PurchasesHybridCommon (1.11.0):
- Purchases (= 3.13.0)

DEPENDENCIES:
Expand All @@ -34,9 +34,9 @@ SPEC CHECKSUMS:
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
integration_test: 7db6d89f336f671dcbc7563ee27a5b08f6f8aee1
Purchases: a545d402454bc9395495cceaf0e893360670e0ad
purchases_flutter: 9d3126abd6a7ff95a19334468e4125d6f391c06e
purchases_flutter: f2c2865aa83c7a094ca067a6834395b0de5573d2
PurchasesCoreSwift: e7f7267a6dc526da226baad19c61e8977fa664b4
PurchasesHybridCommon: a3282e900a2a05eb6c52acc4c72fb4f931160f5a
PurchasesHybridCommon: cc91e9f07061de603a355f174cf92fb89f333a92

PODFILE CHECKSUM: 1fdb55652a099787cebcdf2ff01f755f75ce17b9

Expand Down

0 comments on commit 6860cd4

Please sign in to comment.