diff --git a/.circleci/config.yml b/.circleci/config.yml index 65e33e81a..15205bf6e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -211,7 +211,7 @@ jobs: command: sudo pip install awscli - run: name: Deploy to S3 - command: aws s3 sync ~/project/docs/6.7.0 s3://purchases-docs/android/6.7.0 --delete + command: aws s3 sync ~/project/docs/6.8.0-SNAPSHOT s3://purchases-docs/android/6.8.0-SNAPSHOT --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 f0e13c509..eaab157f0 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -6.7.0 +6.8.0-SNAPSHOT diff --git a/docs/index.html b/docs/index.html index 19cb38dbf..f4049761b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,7 +1,7 @@ - + diff --git a/gradle.properties b/gradle.properties index e0889ce82..b0b9ef17f 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.7.0 +VERSION_NAME=6.8.0-SNAPSHOT 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 cde1ab408..51c6fac77 100644 --- a/library.gradle +++ b/library.gradle @@ -17,7 +17,7 @@ android { minSdkVersion minVersion targetSdkVersion compileVersion versionCode 1 - versionName "6.7.0" + versionName "6.8.0-SNAPSHOT" 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 58aab6176..c38f09a35 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.7.0" + const val frameworkVersion = "6.8.0-SNAPSHOT" }