diff --git a/CHANGELOG.md b/CHANGELOG.md index d7d4d61d50..64b3ce35bc 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.3.1 + +- Fix NullPointerException in BilingWrapper ([#79](https://github.com/RevenueCat/purchases-android/pull/79)) +- Handle missing INTERNET permissions when making network requests ([#78](https://github.com/RevenueCat/purchases-android/pull/78)) + ## 2.3.0 - **BREAKING CHANGE** Removed deprecated makePurchase methods diff --git a/gradle.properties b/gradle.properties index 9c3d78d21e..410d32cfd8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ GROUP=com.revenuecat.purchases -VERSION_NAME=2.4.0-SNAPSHOT +VERSION_NAME=2.3.1 POM_DESCRIPTION=Mobile subscriptions in hours, not months. POM_URL=https://github.com/RevenueCat/purchases-android diff --git a/purchases/build.gradle b/purchases/build.gradle index 8ee8206df6..08a1e903ce 100644 --- a/purchases/build.gradle +++ b/purchases/build.gradle @@ -8,7 +8,7 @@ android { minSdkVersion 14 targetSdkVersion 28 versionCode 1 - versionName "2.4.0-SNAPSHOT" + versionName "2.3.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles 'consumer-proguard-rules.pro' diff --git a/purchases/src/main/kotlin/com/revenuecat/purchases/Purchases.kt b/purchases/src/main/kotlin/com/revenuecat/purchases/Purchases.kt index 40b03d6702..6d8c8de8b7 100644 --- a/purchases/src/main/kotlin/com/revenuecat/purchases/Purchases.kt +++ b/purchases/src/main/kotlin/com/revenuecat/purchases/Purchases.kt @@ -943,7 +943,7 @@ class Purchases @VisibleForTesting(otherwise = VisibleForTesting.PRIVATE) intern * Current version of the Purchases SDK */ @JvmStatic - val frameworkVersion = "2.4.0-SNAPSHOT" + val frameworkVersion = "2.3.1" /** * Configures an instance of the Purchases SDK with a specified API key. The instance will