From 2944bed8d4d36e6108d38d08740f3c5c179596cd Mon Sep 17 00:00:00 2001 From: revenuecat-ops Date: Wed, 1 Oct 2025 13:04:53 +0000 Subject: [PATCH] Version bump for 9.8.0 --- .circleci/config.yml | 2 +- .version | 2 +- CHANGELOG.latest.md | 20 +++++++++++--- CHANGELOG.md | 26 +++++++++++++++++++ docs/index.html | 2 +- .../gradle/libs.versions.toml | 2 +- .../MagicWeather/gradle/libs.versions.toml | 2 +- .../gradle/libs.versions.toml | 2 +- gradle.properties | 2 +- library.gradle | 2 +- .../com/revenuecat/purchases/common/Config.kt | 2 +- 11 files changed, 51 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ca9ff68293..51882ff48f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -394,7 +394,7 @@ jobs: command: sudo pip install awscli - run: name: Deploy to S3 - command: aws s3 sync ~/project/docs/9.8.0-SNAPSHOT s3://purchases-docs/android/9.8.0-SNAPSHOT --delete + command: aws s3 sync ~/project/docs/9.8.0 s3://purchases-docs/android/9.8.0 --delete - run: name: Update index.html command: aws s3 cp ~/project/docs/index.html s3://purchases-docs/android/index.html diff --git a/.version b/.version index e8b678cbef..834eb3fa85 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -9.8.0-SNAPSHOT +9.8.0 diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index b06de25990..d1065ad0df 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -4,9 +4,21 @@ ## RevenueCat SDK -### 🐞 Bugfixes -* Fix promo offer button CTA in Customer Center (#2682) via Cesar de la Vega (@vegaro) +### ✨ New Features +* Add Airbridge device ID subscriber attribute (#2696) via Lim Hoang (@limdauto) +* Enable Test Store (#2685) via Antonio Pallares (@ajpallares) + +## RevenueCatUI SDK +### ✨ New Features +* Expose `launch` and `launchIfNeeded` to Java (#2695) via Cesar de la Vega (@vegaro) +### Customer Center +#### 🐞 Bugfixes +* Fix Expired badge in Customer Center dark mode (#2693) via Cesar de la Vega (@vegaro) ### 🔄 Other Changes -* Bump fastlane-plugin-revenuecat_internal from `a6dc551` to `401d148` (#2683) via dependabot[bot] (@dependabot[bot]) -* Bump rexml from 3.4.1 to 3.4.2 (#2676) via dependabot[bot] (@dependabot[bot]) +* Add CODEOWNERS (#2664) via Facundo Menzella (@facumenzella) +* Adds new tab ID properties to `TabsComponent`. (#2577) via JayShortway (@JayShortway) +* Bump fastlane-plugin-revenuecat_internal from `401d148` to `7508f17` (#2697) via dependabot[bot] (@dependabot[bot]) +* Reimplement placeholder with Modifier.Node (#2677) via Jaewoong Eum (@skydoves) +* Remove unused kotlinCompilerExtensionVersion (#2691) via Jaewoong Eum (@skydoves) +* [AUTOMATIC][Paywalls V2] Updates paywall-preview-resources submodule (#2667) via RevenueCat Git Bot (@RCGitBot) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b3c6a401f..67751fc3a0 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +## 9.8.0 +> [!WARNING] +> If you don't have any login system in your app, please make sure your one-time purchase products have been correctly configured in the RevenueCat dashboard as either consumable or non-consumable. If they're incorrectly configured as consumables, RevenueCat will consume these purchases. This means that users won't be able to restore them from version 9.0.0 onward. +> Non-consumables are products that are meant to be bought only once, for example, lifetime subscriptions. + + +## RevenueCat SDK +### ✨ New Features +* Add Airbridge device ID subscriber attribute (#2696) via Lim Hoang (@limdauto) +* Enable Test Store (#2685) via Antonio Pallares (@ajpallares) + +## RevenueCatUI SDK +### ✨ New Features +* Expose `launch` and `launchIfNeeded` to Java (#2695) via Cesar de la Vega (@vegaro) +### Customer Center +#### 🐞 Bugfixes +* Fix Expired badge in Customer Center dark mode (#2693) via Cesar de la Vega (@vegaro) + +### 🔄 Other Changes +* Add CODEOWNERS (#2664) via Facundo Menzella (@facumenzella) +* Adds new tab ID properties to `TabsComponent`. (#2577) via JayShortway (@JayShortway) +* Bump fastlane-plugin-revenuecat_internal from `401d148` to `7508f17` (#2697) via dependabot[bot] (@dependabot[bot]) +* Reimplement placeholder with Modifier.Node (#2677) via Jaewoong Eum (@skydoves) +* Remove unused kotlinCompilerExtensionVersion (#2691) via Jaewoong Eum (@skydoves) +* [AUTOMATIC][Paywalls V2] Updates paywall-preview-resources submodule (#2667) via RevenueCat Git Bot (@RCGitBot) + ## 9.7.2 > [!WARNING] > If you don't have any login system in your app, please make sure your one-time purchase products have been correctly configured in the RevenueCat dashboard as either consumable or non-consumable. If they're incorrectly configured as consumables, RevenueCat will consume these purchases. This means that users won't be able to restore them from version 9.0.0 onward. diff --git a/docs/index.html b/docs/index.html index f23c18eb51..5c384ab391 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,7 +1,7 @@ - + diff --git a/examples/CustomEntitlementComputationSample/gradle/libs.versions.toml b/examples/CustomEntitlementComputationSample/gradle/libs.versions.toml index 2199e84b6b..7ec3066c37 100644 --- a/examples/CustomEntitlementComputationSample/gradle/libs.versions.toml +++ b/examples/CustomEntitlementComputationSample/gradle/libs.versions.toml @@ -1,7 +1,7 @@ [versions] agp = "8.11.1" kotlin = "1.8.22" -purchases = "9.8.0-SNAPSHOT" +purchases = "9.8.0" androidxCore = "1.10.1" [plugins] diff --git a/examples/MagicWeather/gradle/libs.versions.toml b/examples/MagicWeather/gradle/libs.versions.toml index 9e17f6bef3..4428eed6da 100644 --- a/examples/MagicWeather/gradle/libs.versions.toml +++ b/examples/MagicWeather/gradle/libs.versions.toml @@ -2,7 +2,7 @@ agp = "8.11.1" androidxNavigation = "2.6.0" kotlin = "1.9.0" -purchases = "9.8.0-SNAPSHOT" +purchases = "9.8.0" lifecycle = "2.6.1" androidxCore = "1.10.1" diff --git a/examples/MagicWeatherCompose/gradle/libs.versions.toml b/examples/MagicWeatherCompose/gradle/libs.versions.toml index fb62657da9..867f50f9ad 100644 --- a/examples/MagicWeatherCompose/gradle/libs.versions.toml +++ b/examples/MagicWeatherCompose/gradle/libs.versions.toml @@ -2,7 +2,7 @@ agp = "8.11.1" androidxNavigation = "2.5.3" kotlin = "1.8.22" -purchases = "9.8.0-SNAPSHOT" +purchases = "9.8.0" lifecycle = "2.5.0" androidxCore = "1.10.1" diff --git a/gradle.properties b/gradle.properties index be4e3953bd..8ab99be733 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ #Fri Mar 31 10:31:20 PDT 2023 GROUP=com.revenuecat.purchases -VERSION_NAME=9.8.0-SNAPSHOT +VERSION_NAME=9.8.0 POM_DESCRIPTION=Mobile subscriptions in hours, not months. POM_URL=https://github.com/RevenueCat/purchases-android diff --git a/library.gradle b/library.gradle index 91c5de95dc..55415cc90f 100644 --- a/library.gradle +++ b/library.gradle @@ -5,7 +5,7 @@ android { minSdkVersion obtainMinSdkVersion() targetSdkVersion compileVersion versionCode 1 - versionName "9.8.0-SNAPSHOT" + versionName "9.8.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" } diff --git a/purchases/src/main/kotlin/com/revenuecat/purchases/common/Config.kt b/purchases/src/main/kotlin/com/revenuecat/purchases/common/Config.kt index 321bf693e8..2af5a69c38 100644 --- a/purchases/src/main/kotlin/com/revenuecat/purchases/common/Config.kt +++ b/purchases/src/main/kotlin/com/revenuecat/purchases/common/Config.kt @@ -6,5 +6,5 @@ import com.revenuecat.purchases.api.BuildConfig internal object Config { var logLevel = LogLevel.debugLogsEnabled(BuildConfig.DEBUG) - const val frameworkVersion = "9.8.0-SNAPSHOT" + const val frameworkVersion = "9.8.0" }