Skip to content

Commit

Permalink
Prepare for release 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaro committed Apr 17, 2019
1 parent 5cbff56 commit 52087ad
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.1.1

- Adds setFinishTransactions. Set this to false if you are finishing transactions outside of the Purchases SDK

## 2.1.0

- Adds userCancelled as a parameter to the completion block of the makePurchase function
Expand Down
4 changes: 2 additions & 2 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Releasing
=========

1. Change the version in `gradle.properties` to a non-SNAPSHOT version.
1. Change the version number in Purchases.kt
1. Change the versionName in purchases/build.gradle.
1. Change the version number in `Purchases.kt`
1. Change the versionName in `purchases/build.gradle`.
1. Update the `CHANGELOG.md` for the impending release.
1. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
1. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
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=2.2.0-SNAPSHOT
VERSION_NAME=2.1.1

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 28
versionCode 1
versionName "2.2.0-SNAPSHOT"
versionName "2.1.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ class Purchases @VisibleForTesting(otherwise = VisibleForTesting.PRIVATE) intern
* Current version of the Purchases SDK
*/
@JvmStatic
val frameworkVersion = "2.2.0-SNAPSHOT"
val frameworkVersion = "2.1.1"

/**
* Configures an instance of the Purchases SDK with a specified API key. The instance will
Expand Down

0 comments on commit 52087ad

Please sign in to comment.