diff --git a/.circleci/config.yml b/.circleci/config.yml index 1ae2396ac..8520446ca 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -209,7 +209,7 @@ jobs: command: sudo pip install awscli - run: name: Deploy to S3 - command: aws s3 sync ~/project/docs/6.8.0-SNAPSHOT s3://purchases-docs/android/6.8.0-SNAPSHOT --delete + command: aws s3 sync ~/project/docs/6.7.1 s3://purchases-docs/android/6.7.1 --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 eaab157f0..06a765991 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -6.8.0-SNAPSHOT +6.7.1 diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index 9105a50db..a85b727aa 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -1,4 +1,9 @@ -### New Features -* Diagnostics: Add diagnostics for FEATURE_NOT_SUPPORTED error (#1137) via Mark Villacampa (@MarkVillacampa) +### Dependency Updates +* Bump fastlane from 2.213.0 to 2.214.0 (#1140) via dependabot[bot] (@dependabot[bot]) ### Other Changes -* Trusted entitlements: Support post params hash header (#1136) via Toni Rico (@tonidero) +* Add `customEntitlementComputation` flavor (#1147) via Toni Rico (@tonidero) +* Make customEntitlementComputation singular (#1148) via Toni Rico (@tonidero) +* Disable offline entitlements in custom entitlements computation mode (#1146) via Toni Rico (@tonidero) +* Remove integration test flavor (#1143) via Toni Rico (@tonidero) +* Add header to requests when in custom entitlement computation mode (#1145) via Toni Rico (@tonidero) +* Add internal customEntitlementsComputation mode to app config (#1141) via Toni Rico (@tonidero) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f50250a1..07d1a9711 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 6.7.1 +### Dependency Updates +* Bump fastlane from 2.213.0 to 2.214.0 (#1140) via dependabot[bot] (@dependabot[bot]) +### Other Changes +* Add `customEntitlementComputation` flavor (#1147) via Toni Rico (@tonidero) +* Make customEntitlementComputation singular (#1148) via Toni Rico (@tonidero) +* Disable offline entitlements in custom entitlements computation mode (#1146) via Toni Rico (@tonidero) +* Remove integration test flavor (#1143) via Toni Rico (@tonidero) +* Add header to requests when in custom entitlement computation mode (#1145) via Toni Rico (@tonidero) +* Add internal customEntitlementsComputation mode to app config (#1141) via Toni Rico (@tonidero) + ## 6.7.0 ### New Features * Diagnostics: Add diagnostics for FEATURE_NOT_SUPPORTED error (#1137) via Mark Villacampa (@MarkVillacampa) diff --git a/docs/index.html b/docs/index.html index f4049761b..50ee6ee57 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,7 +1,7 @@ - + diff --git a/gradle.properties b/gradle.properties index b0b9ef17f..eb09a68e0 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=6.8.0-SNAPSHOT +VERSION_NAME=6.7.1 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 16cf5c6b7..2f006b568 100644 --- a/library.gradle +++ b/library.gradle @@ -16,7 +16,7 @@ android { minSdkVersion obtainMinSdkVersion() targetSdkVersion compileVersion versionCode 1 - versionName "6.8.0-SNAPSHOT" + versionName "6.7.1" 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 c38f09a35..15278933b 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 = "6.8.0-SNAPSHOT" + const val frameworkVersion = "6.7.1" }