From 38a53b504a8432112400334e59cb35c59a1f45c4 Mon Sep 17 00:00:00 2001 From: Cesar de la Vega Date: Tue, 31 Mar 2020 18:23:37 -0700 Subject: [PATCH] Bump version (#134) --- CHANGELOG.md | 5 +++++ VERSIONS.md | 1 + android/build.gradle | 2 +- build.js | 2 +- package.json | 2 +- 5 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 604c4283..d154457a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/VERSIONS.md b/VERSIONS.md index a9d1b964..b4ebcfbf 100644 --- a/VERSIONS.md +++ b/VERSIONS.md @@ -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 | diff --git a/android/build.gradle b/android/build.gradle index 9cd15576..bd07d868 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -26,7 +26,7 @@ android { minSdkVersion safeExtGet('minSdkVersion', 16) targetSdkVersion safeExtGet('targetSdkVersion', 26) versionCode 1 - versionName '3.0.7' + versionName '3.2.0' } } diff --git a/build.js b/build.js index d8c451c3..83090263 100644 --- a/build.js +++ b/build.js @@ -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") { diff --git a/package.json b/package.json index 583e2fd2..95537083 100644 --- a/package.json +++ b/package.json @@ -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",