Skip to content

Commit

Permalink
Bump version (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaro authored Apr 1, 2020
1 parent 1555073 commit 38a53b5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 3.2.0

- Adds 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.1.0

- Properly scope Android package [#114](https://github.com/RevenueCat/react-native-purchases/pull/114)
Expand Down
1 change: 1 addition & 0 deletions VERSIONS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| Version | iOS version | Android version | Common files version |
|---------|-------------|-----------------|----------------------|
| 3.2.0 | 3.2.1 | 3.1.0 | 1.0.10 |
| 3.1.0 | 3.2.1 | 3.1.0 | 1.0.9 |
| 3.0.6 | 3.0.1 | 3.0.4 | 1.0.5 |
| 3.0.5 | 3.0.1 | 3.0.4 | 1.0.5 |
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {
minSdkVersion safeExtGet('minSdkVersion', 16)
targetSdkVersion safeExtGet('targetSdkVersion', 26)
versionCode 1
versionName '3.0.7'
versionName '3.2.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if (os.type() === "Linux") {
);
downloadProcess.stdout.pipe(process.stdout);
const downloadProcessCommon = exec(
"./scripts/download-purchases-common.sh 1.0.9"
"./scripts/download-purchases-common.sh 1.0.10"
);
downloadProcessCommon.stdout.pipe(process.stdout);
} else if (os.type() === "Windows_NT") {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-purchases",
"title": "React Native Purchases",
"version": "3.1.0",
"version": "3.2.0",
"description": "React Native in-app purchases and subscriptions made easy.",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 38a53b5

Please sign in to comment.