diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index 42249fb72b..ca0ab1eab5 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -1,3 +1,3 @@ -- Moves the code of `onBillingSetupFinished` to the main thread. Changes the callback of `canMakePayments` to the main thread. - /~https://github.com/RevenueCat/purchases-android/pull/349/ - /~https://github.com/RevenueCat/purchases-android/issues/348 +- Makes improvements to prevent multiple HTTP requests with the same parameters to `/identify` and `/alias`. + /~https://github.com/RevenueCat/purchases-android/pull/358 + /~https://github.com/RevenueCat/purchases-android/pull/359 diff --git a/CHANGELOG.md b/CHANGELOG.md index 77de1ac788..7b586cdd5c 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 4.3.2 + +- Makes improvements to prevent multiple HTTP requests with the same parameters to `/identify` and `/alias`. + /~https://github.com/RevenueCat/purchases-android/pull/358 + /~https://github.com/RevenueCat/purchases-android/pull/359 + ## 4.3.1 - Moves the code of `onBillingSetupFinished` to the main thread. Changes the callback of `canMakePayments` to the main thread. diff --git a/common/src/main/java/com/revenuecat/purchases/common/Config.kt b/common/src/main/java/com/revenuecat/purchases/common/Config.kt index 0c91a736c8..0fb186cf2f 100644 --- a/common/src/main/java/com/revenuecat/purchases/common/Config.kt +++ b/common/src/main/java/com/revenuecat/purchases/common/Config.kt @@ -4,5 +4,5 @@ object Config { var debugLogsEnabled = false - const val frameworkVersion = "4.4.0-SNAPSHOT" + const val frameworkVersion = "4.3.2" } diff --git a/gradle.properties b/gradle.properties index 3fc0175662..ec7d1772a2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ GROUP=com.revenuecat.purchases -VERSION_NAME=4.4.0-SNAPSHOT +VERSION_NAME=4.3.2 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 14a29c328b..1c8dcc6e40 100644 --- a/library.gradle +++ b/library.gradle @@ -10,7 +10,7 @@ android { minSdkVersion minVersion targetSdkVersion compileVersion versionCode 1 - versionName "4.4.0-SNAPSHOT" + versionName "4.3.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro"