Skip to content

Commit

Permalink
added changeloga and bumped version number to 4.6.0 (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
aboedo authored Dec 1, 2021
1 parent 082ed57 commit 8971d7e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.latest.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
- Added `isConfigured` to be able to check if there is an instance of Purchases already configured
https://github.com/RevenueCat/purchases-android/pull/378
- Added `EntitlementInfo.ownershipType`, which can be used to determine whether an entitlement was granted by a direct purchase or shared through a family member.
https://github.com/RevenueCat/purchases-android/pull/382
- Added a log warning when `configure` is called with an empty string as `appUserID`, to make it clear that the user will be considered an anonymous user.
https://github.com/RevenueCat/purchases-android/pull/384
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 4.6.0

- Added `EntitlementInfo.ownershipType`, which can be used to determine whether an entitlement was granted by a direct purchase or shared through a family member.
https://github.com/RevenueCat/purchases-android/pull/382
- Added a log warning when `configure` is called with an empty string as `appUserID`, to make it clear that the user will be considered an anonymous user.
https://github.com/RevenueCat/purchases-android/pull/384

## 4.5.0

- Added `isConfigured` to be able to check if there is an instance of Purchases already configured
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ object Config {

var debugLogsEnabled = false

const val frameworkVersion = "4.6.0-SNAPSHOT"
const val frameworkVersion = "4.6.0"
}
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=4.6.0-SNAPSHOT
VERSION_NAME=4.6.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 library.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
minSdkVersion minVersion
targetSdkVersion compileVersion
versionCode 1
versionName "4.6.0-SNAPSHOT"
versionName "4.6.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down

0 comments on commit 8971d7e

Please sign in to comment.