Skip to content

Commit

Permalink
Prepare for release 1.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaro committed Oct 23, 2018
1 parent 29b7498 commit 37369ce
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
1 change: 0 additions & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion purchases/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public interface GetEntitlementsHandler {
}

public static String getFrameworkVersion() {
return "1.4.0-SNAPSHOT";
return "1.3.7";
}

Purchases(Application application,
Expand Down

0 comments on commit 37369ce

Please sign in to comment.