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.3.0 #96

Merged
merged 27 commits into from
Sep 23, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7ac4d4c
bumped purchases-hybrid-common to 1.3.1
aboedo Sep 11, 2020
b60bbb8
bumped common version to 1.4.0
aboedo Sep 18, 2020
4012aaf
added empty swift file so that swift code compiles correctly
aboedo Sep 18, 2020
bee1db6
ignored .last_build_id
aboedo Sep 18, 2020
ea83a47
updated deployment target version to 9.0.
aboedo Sep 18, 2020
6fb6d81
added new methods for attribution v2 to flutter plugin interface
aboedo Sep 18, 2020
577afa6
added new methods to the flutter dart interface
aboedo Sep 18, 2020
5fa3b1d
added deprecation warning in dart
aboedo Sep 18, 2020
1130ed1
fixeed param names typo for iOS, added new methods for Android
aboedo Sep 18, 2020
9ffd43f
updated purchases-hybrid-common version for Android
aboedo Sep 18, 2020
2f4d36c
bumped version number and added changelog
aboedo Sep 19, 2020
b233ff5
reverted accidental changes in podfile and main.dart
aboedo Sep 19, 2020
9e25469
removed deprecated call to addAttributionData in the example app
aboedo Sep 21, 2020
ebc1013
fix typo in purchases_flutter.dart
aboedo Sep 21, 2020
e6e2933
fixed typo in build.gradle, updated version of gradle build
aboedo Sep 21, 2020
cbe83f8
fixed missing semicolons
aboedo Sep 21, 2020
dae7745
updated calls to common code in PurchasesFlutterPlugin
aboedo Sep 21, 2020
3fc061e
updated version of purchases-hybrid-common
aboedo Sep 21, 2020
c3be6bb
updated podfile to use purchases-hybrid-common 1.4.1
aboedo Sep 21, 2020
9997355
fix typo in fbAnonymousID
aboedo Sep 21, 2020
ce01a05
fix docs from PR comments
aboedo Sep 21, 2020
6bc5c8c
added nonSubscriptionTransactions
aboedo Sep 21, 2020
1eff4a9
fixed mapping of transactions
aboedo Sep 22, 2020
3755ef9
updates to documentation for collectDeviceIdentifiers
aboedo Sep 22, 2020
8cd51fb
bumped purchases-hybrid-common to 1.4.2
aboedo Sep 22, 2020
3a2f786
fixes docs for non-subscription transactions
aboedo Sep 23, 2020
857bf0b
ran flutter format
aboedo Sep 23, 2020
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
updated podfile to use purchases-hybrid-common 1.4.1
  • Loading branch information
aboedo committed Sep 21, 2020
commit c3be6bb4cee1e5a621c2e587bbeeb3d98ca546a4
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
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.4.0"
implementation "com.revenuecat.purchases:purchases-hybrid-common:1.4.1"
}
8 changes: 4 additions & 4 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ PODS:
- PurchasesCoreSwift (= 3.7.1)
- purchases_flutter (1.3.0):
- Flutter
- PurchasesHybridCommon (= 1.4.0)
- PurchasesHybridCommon (= 1.4.1)
- PurchasesCoreSwift (3.7.1)
- PurchasesHybridCommon (1.4.0):
- PurchasesHybridCommon (1.4.1):
- Purchases (= 3.7.1)

DEPENDENCIES:
Expand All @@ -34,9 +34,9 @@ SPEC CHECKSUMS:
e2e: 967b9b1fc533b7636a3b7a719f840c27f301fe1f
Flutter: 0e3d915762c693b495b44d77113d4970485de6ec
Purchases: 81efbd7dc9164247a0885ad12ddf6b043a58c1db
purchases_flutter: d77e5afec5fb8121a766c93ffc2a96eb680e2718
purchases_flutter: 896464400b779291abbe2a2bb650d7dad42741fa
PurchasesCoreSwift: eca892b2a0eff34d55d70e7c3349c1eb4c7659f5
PurchasesHybridCommon: 201dc69e8e5baa700c1e47f518810f35e745dd58
PurchasesHybridCommon: e8d33a7dea50c157bd505aa7f8a4cc42520c1f8c

PODFILE CHECKSUM: b1f7a399522c118a74b177b13c01eca692aa7e6d

Expand Down
2 changes: 1 addition & 1 deletion ios/purchases_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0'
s.dependency 'PurchasesHybridCommon', '1.4.1'
s.ios.deployment_target = '9.0'
end