diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ca660460a..6c391dbd5d 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.3.7 +- Adds requestDate to the purchaser info to avoid edge cases + ## 1.3.6 - Fix bug where closed RCPurchases were still listening for application lifecyle methods diff --git a/RELEASING.md b/RELEASING.md index 48183c0ad5..71bfcddad2 100755 --- a/RELEASING.md +++ b/RELEASING.md @@ -5,7 +5,6 @@ Releasing 2. Change the version number in Purchases.java 2. Change the versionName in purchases/build.gradles 2. Update the `CHANGELOG.md` for the impending release. - 3. Update the `README.md` with the new version. 4. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version) 5. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version) 6. `./gradlew clean uploadArchives` diff --git a/gradle.properties b/gradle.properties index 5221bbeff5..72264af14f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ GROUP=com.revenuecat.purchases -VERSION_NAME=1.4.0-SNAPSHOT +VERSION_NAME=1.3.7 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 c72cf69241..2858ac0d12 100644 --- a/purchases/build.gradle +++ b/purchases/build.gradle @@ -8,7 +8,7 @@ android { minSdkVersion 14 targetSdkVersion 27 versionCode 1 - versionName "1.4.0-SNAPSHOT" + versionName "1.3.7" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } diff --git a/purchases/src/main/java/com/revenuecat/purchases/Purchases.java b/purchases/src/main/java/com/revenuecat/purchases/Purchases.java index 5a73a10635..d431c87e82 100644 --- a/purchases/src/main/java/com/revenuecat/purchases/Purchases.java +++ b/purchases/src/main/java/com/revenuecat/purchases/Purchases.java @@ -87,7 +87,7 @@ public interface GetEntitlementsHandler { } public static String getFrameworkVersion() { - return "1.4.0-SNAPSHOT"; + return "1.3.7"; } Purchases(Application application,