Skip to content

Commit

Permalink
Version 3.1.0 (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaro authored Mar 16, 2020
1 parent c368ffd commit 7adc6b2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.1.0

- Another fix for NoSuchElementException when retrieving Advertising ID #124
- Added Subscriber Attributes, which allow developers to store additional, structured information
for a user in RevenueCat. More info: https://docs.revenuecat.com/docs/user-attributes

## 3.0.7

- Fixes NoSuchElementException #115
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Automatic Releasing
=========
1. Create a branch bump/x.y.z
1. Create a CHANGELOG.latest.md with the changes for the current version (to be used by Fastlane for the github release notes)
1. Update the version number in `gradle.properties`, `Purchases.kt` and in `purchases/build.gradle` by running `fastlane bump_and_update_changelog version:X.Y.Z` (where X.Y.Z is the new version)
1. Run `fastlane bump_and_update_changelog version:X.Y.Z` (where X.Y.Z is the new version) to update the version number in `gradle.properties`, `Purchases.kt` and in `purchases/build.gradle`
1. Commit the changes `git commit -am "Version X.Y.Z"` (where X.Y.Z is the new version)
1. Make a PR, merge when approved
1. Pull master
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=3.1.0-SNAPSHOT
VERSION_NAME=3.1.0

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 @@ -10,7 +10,7 @@ android {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "3.1.0-SNAPSHOT"
versionName "3.1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-proguard-rules.pro'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,7 @@ class Purchases @VisibleForTesting(otherwise = VisibleForTesting.PRIVATE) intern
* Current version of the Purchases SDK
*/
@JvmStatic
val frameworkVersion = "3.1.0-SNAPSHOT"
val frameworkVersion = "3.1.0"

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

0 comments on commit 7adc6b2

Please sign in to comment.