diff --git a/.version b/.version index f0ad3287..5740dd07 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -9.7.0 \ No newline at end of file +9.8.0 \ No newline at end of file diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index 754d3d2c..03b471ca 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -1,18 +1,19 @@ ## RevenueCat SDK -### πŸ“¦ Dependency Updates -* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 18.29.0 (#1033) via RevenueCat Git Bot (@RCGitBot) - * [Android 10.16.0](https://github.com/RevenueCat/purchases-android/releases/tag/10.16.0) - * [iOS 5.83.0](https://github.com/RevenueCat/purchases-ios/releases/tag/5.83.0) - -## RevenueCatUI SDK ### ✨ New Features -* Enables support for multipage paywalls -* Add onWebCheckoutOpened and onUrlOpened callbacks to PaywallListener (#1016) via Álvaro Brey (@AlvaroBrey) +* feat(ads): expose reward verification primitives (#971) via Peter Porfy (@peterporfy) +### 🐞 Bugfixes +* Stop sending the purchase response twice on iOS errors (#1042) via Cesar de la Vega (@vegaro) +* fix: surface native errors from GetCurrentOfferingForPlacement (#1019) via Cesar de la Vega (@vegaro) +### πŸ“¦ Dependency Updates +* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 18.30.0 (#1046) via RevenueCat Git Bot (@RCGitBot) + * [Android 10.16.1](https://github.com/RevenueCat/purchases-android/releases/tag/10.16.1) + * [iOS 5.83.1](https://github.com/RevenueCat/purchases-ios/releases/tag/5.83.1) ### πŸ”„ Other Changes -* Skip test cases list in maestro tests using launch arguments (#897) via Antonio Pallares (@ajpallares) -* Add CircleCI job for maestro E2E tests (#838) via Antonio Pallares (@ajpallares) -* Add maestro E2E test for purchase through paywall (#837) via Antonio Pallares (@ajpallares) -* Add maestro E2E test app (#836) via Antonio Pallares (@ajpallares) -* Remove workflows dangerous setting (#1030) via Cesar de la Vega (@vegaro) -* Don't run `deploy-check` on `bump` and `phc-upgrade` pipelines (#1028) via Cesar de la Vega (@vegaro) +* feat(ads): ad reward sample app (#1045) via Peter Porfy (@peterporfy) +* test: cover custom paywall tracking, ad tracker, and model parsing (#1013) via Cesar de la Vega (@vegaro) +* test: cover missing Purchases functions (#1012) via Cesar de la Vega (@vegaro) +* Bump fastlane-plugin-revenuecat_internal from `b4e1e7f` to `7fbbe66` (#1040) via dependabot[bot] (@dependabot[bot]) +* Bump fastlane-plugin-revenuecat_internal from `dd577ee` to `b4e1e7f` (#1038) via dependabot[bot] (@dependabot[bot]) +* Bump fastlane-plugin-revenuecat_internal from `3421c88` to `dd577ee` (#1036) via dependabot[bot] (@dependabot[bot]) +* Bump danger from 9.6.0 to 9.6.1 (#1035) via dependabot[bot] (@dependabot[bot]) diff --git a/CHANGELOG.md b/CHANGELOG.md index 558b7d91..b63a034b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## 9.8.0 +## RevenueCat SDK +### ✨ New Features +* feat(ads): expose reward verification primitives (#971) via Peter Porfy (@peterporfy) +### 🐞 Bugfixes +* Stop sending the purchase response twice on iOS errors (#1042) via Cesar de la Vega (@vegaro) +* fix: surface native errors from GetCurrentOfferingForPlacement (#1019) via Cesar de la Vega (@vegaro) +### πŸ“¦ Dependency Updates +* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 18.30.0 (#1046) via RevenueCat Git Bot (@RCGitBot) + * [Android 10.16.1](https://github.com/RevenueCat/purchases-android/releases/tag/10.16.1) + * [iOS 5.83.1](https://github.com/RevenueCat/purchases-ios/releases/tag/5.83.1) + +### πŸ”„ Other Changes +* feat(ads): ad reward sample app (#1045) via Peter Porfy (@peterporfy) +* test: cover custom paywall tracking, ad tracker, and model parsing (#1013) via Cesar de la Vega (@vegaro) +* test: cover missing Purchases functions (#1012) via Cesar de la Vega (@vegaro) +* Bump fastlane-plugin-revenuecat_internal from `b4e1e7f` to `7fbbe66` (#1040) via dependabot[bot] (@dependabot[bot]) +* Bump fastlane-plugin-revenuecat_internal from `dd577ee` to `b4e1e7f` (#1038) via dependabot[bot] (@dependabot[bot]) +* Bump fastlane-plugin-revenuecat_internal from `3421c88` to `dd577ee` (#1036) via dependabot[bot] (@dependabot[bot]) +* Bump danger from 9.6.0 to 9.6.1 (#1035) via dependabot[bot] (@dependabot[bot]) + ## 9.7.0 ## RevenueCat SDK ### πŸ“¦ Dependency Updates diff --git a/RevenueCat/Plugins/Android/PurchasesWrapper.java b/RevenueCat/Plugins/Android/PurchasesWrapper.java index 3d7f01a2..a29d6069 100644 --- a/RevenueCat/Plugins/Android/PurchasesWrapper.java +++ b/RevenueCat/Plugins/Android/PurchasesWrapper.java @@ -68,7 +68,7 @@ public class PurchasesWrapper { private static final String POLL_REWARD_VERIFICATION = "_pollRewardVerification"; private static final String PLATFORM_NAME = "unity"; - private static final String PLUGIN_VERSION = "9.7.0"; + private static final String PLUGIN_VERSION = "9.8.0"; private static String gameObject; diff --git a/RevenueCat/Plugins/iOS/PurchasesUnityHelper.m b/RevenueCat/Plugins/iOS/PurchasesUnityHelper.m index 71050ff4..60ef31be 100644 --- a/RevenueCat/Plugins/iOS/PurchasesUnityHelper.m +++ b/RevenueCat/Plugins/iOS/PurchasesUnityHelper.m @@ -835,7 +835,7 @@ - (NSString *)platformFlavor { } - (NSString *)platformFlavorVersion { - return @"9.7.0"; + return @"9.8.0"; } @end diff --git a/RevenueCat/package.json b/RevenueCat/package.json index 900d1717..6a8a98d9 100644 --- a/RevenueCat/package.json +++ b/RevenueCat/package.json @@ -1,6 +1,6 @@ { "name": "com.revenuecat.purchases-unity", - "version": "9.7.0", + "version": "9.8.0", "displayName": "RevenueCat SDK for Unity", "description": "Unity in-app purchases and subscriptions made easy. Supports iOS and Android.", "documentationUrl": "https://www.revenuecat.com/docs", diff --git a/RevenueCatUI/package.json b/RevenueCatUI/package.json index 74e442c2..598ca7b9 100644 --- a/RevenueCatUI/package.json +++ b/RevenueCatUI/package.json @@ -1,6 +1,6 @@ { "name": "com.revenuecat.purchases-ui-unity", - "version": "9.7.0", + "version": "9.8.0", "displayName": "RevenueCat UI SDK for Unity", "description": "Unity UI components for RevenueCat paywalls and customer center. Supports iOS and Android.", "documentationUrl": "https://www.revenuecat.com/docs", diff --git a/VERSIONS.md b/VERSIONS.md index 503323f3..44f18409 100644 --- a/VERSIONS.md +++ b/VERSIONS.md @@ -1,5 +1,6 @@ | Version | iOS version | Android version | Common version | Play Billing Library version | Unity IAP compatibility | | ------------- | ----------- | --------------- | -------------- | ---------------------------- | ----------------------------- | +| 9.8.0 | [5.83.1](https://github.com/RevenueCat/purchases-ios/releases/tag/5.83.1) | [10.16.1](https://github.com/RevenueCat/purchases-android/releases/tag/10.16.1) | [18.30.0](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/18.30.0) | [8.3.0](https://developer.android.com/google/play/billing/release-notes) | Unity IAP 5.0.0+ | | 9.7.0 | [5.83.0](https://github.com/RevenueCat/purchases-ios/releases/tag/5.83.0) | [10.16.0](https://github.com/RevenueCat/purchases-android/releases/tag/10.16.0) | [18.29.0](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/18.29.0) | [8.3.0](https://developer.android.com/google/play/billing/release-notes) | Unity IAP 5.0.0+ | | 9.6.0 | [5.82.0](https://github.com/RevenueCat/purchases-ios/releases/tag/5.82.0) | [10.15.1](https://github.com/RevenueCat/purchases-android/releases/tag/10.15.1) | [18.27.0](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/18.27.0) | [8.3.0](https://developer.android.com/google/play/billing/release-notes) | Unity IAP 5.0.0+ | | 9.5.3 | [5.81.2](https://github.com/RevenueCat/purchases-ios/releases/tag/5.81.2) | [10.15.0](https://github.com/RevenueCat/purchases-android/releases/tag/10.15.0) | [18.23.0](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/18.23.0) | [8.3.0](https://developer.android.com/google/play/billing/release-notes) | Unity IAP 5.0.0+ |