Skip to content

Commit

Permalink
Preparing for version 3.3.2 (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaro authored Sep 3, 2020
1 parent 0e28b01 commit a7dba0c
Show file tree
Hide file tree
Showing 6 changed files with 11 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 @@
## 3.3.2

- Fixes purchaseDiscountedPackage and purchaseDiscountedProduct [#167](https://github.com/RevenueCat/react-native-purchases/pull/167)

## 3.3.1

- Renames setProxyURLString with setProxyURL [#148](https://github.com/RevenueCat/react-native-purchases/pull/148)
Expand Down
5 changes: 3 additions & 2 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
1. Update to the latest SDK versions in `build.js`, `RNPurchases.podspec` and `android/build.gradle`.
1. Update versions in VERSIONS.md.
1. Update version in package.json.
1. Update platformFlavorVersion in RNPurchases.m.
1. Update version in `package.json`.
1. Update `platformFlavorVersion` in `RNPurchases.m`.
1. Update versionName in `android/build.gradle`.
1. Add an entry to CHANGELOG.md
1. Run `npm run build`
1. `git commit -am "Preparing for version x.y.z"`
Expand Down
1 change: 1 addition & 0 deletions VERSIONS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
| Version | iOS version | Android version | Common files version |
|---------|-------------|-----------------|----------------------|
| 3.4.0-SNAPSHOT | 3.4.0 | 3.2.0 | 1.2.0 |
| 3.3.2 | 3.4.0 | 3.2.0 | 1.2.0 |
| 3.3.1 | 3.4.0 | 3.2.0 | 1.2.0 |
| 3.3.0 | 3.4.0 | 3.2.0 | 1.2.0 |
| 3.2.0 | 3.2.1 | 3.1.0 | 1.0.10 |
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.4.0-SNAPSHOT'
versionName '3.3.2'
}
}

Expand Down
2 changes: 1 addition & 1 deletion ios/RNPurchases.m
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ - (NSString *)platformFlavor {
}

- (NSString *)platformFlavorVersion {
return @"3.4.0-SNAPSHOT";
return @"3.3.2";
}

@end
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.4.0-SNAPSHOT",
"version": "3.3.2",
"description": "React Native in-app purchases and subscriptions made easy.",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit a7dba0c

Please sign in to comment.