Skip to content

Commit 000ea34

Browse files
author
RevenueCat CI
committed
Version bump for 8.0.1
1 parent 0d30377 commit 000ea34

File tree

11 files changed

+24
-24
lines changed

11 files changed

+24
-24
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.0.0
1+
8.0.1

CHANGELOG.latest.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
1-
Welcome to version 8.0 of the React Native RevenueCat SDK! A full migration guide can be found [here](https://github.com/RevenueCat/react-native-purchases/blob/66d77607d1ce2f11dcb4954eac8cd5756d0ec211/migrations/v8-MIGRATION.md).
2-
3-
### Breaking Changes
4-
5-
- v8.0 Release (#1050) via Will Taylor (@fire-at-will)
6-
71
### Dependency Updates
8-
9-
- Bump fastlane from 2.221.1 to 2.222.0 (#1046) via dependabot[bot] (@dependabot[bot])
10-
- Fix ws affected by a DoS (#1043) via Cesar de la Vega (@vegaro)
11-
12-
### Other Changes
13-
14-
- docs: Update installation instructions for Expo (#1041) via Aman Mittal (@amandeepmittal)
2+
* Updates purchases-hybrid-common to 13.0.1 (#1063) via Mark Villacampa (@MarkVillacampa)
3+
* [Android 8.4.0](https://github.com/RevenueCat/purchases-android/releases/tag/8.4.0)
4+
* [iOS 5.2.3](https://github.com/RevenueCat/purchases-ios/releases/tag/5.2.3)
5+
* Bump danger from 9.4.3 to 9.5.0 (#1058) via dependabot[bot] (@dependabot[bot])
6+
* Bump fast-xml-parser from 4.4.0 to 4.4.1 (#1051) via dependabot[bot] (@dependabot[bot])

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 8.0.1
2+
### Dependency Updates
3+
* Updates purchases-hybrid-common to 13.0.1 (#1063) via Mark Villacampa (@MarkVillacampa)
4+
* [Android 8.4.0](https://github.com/RevenueCat/purchases-android/releases/tag/8.4.0)
5+
* [iOS 5.2.3](https://github.com/RevenueCat/purchases-ios/releases/tag/5.2.3)
6+
* Bump danger from 9.4.3 to 9.5.0 (#1058) via dependabot[bot] (@dependabot[bot])
7+
* Bump fast-xml-parser from 4.4.0 to 4.4.1 (#1051) via dependabot[bot] (@dependabot[bot])
8+
19
## 8.0.0
210
Welcome to version 8.0 of the React Native RevenueCat SDK! A full migration guide can be found [here](https://github.com/RevenueCat/react-native-purchases/blob/66d77607d1ce2f11dcb4954eac8cd5756d0ec211/migrations/v8-MIGRATION.md).
311

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929
minSdkVersion getExtOrIntegerDefault('minSdkVersion')
3030
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
3131
versionCode 1
32-
versionName '8.0.0'
32+
versionName '8.0.1'
3333
}
3434

3535
buildTypes {

android/src/main/java/com/revenuecat/purchases/react/RNPurchasesModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class RNPurchasesModule extends ReactContextBaseJavaModule implements Upd
4747
private static final String CUSTOMER_INFO_UPDATED = "Purchases-CustomerInfoUpdated";
4848
private static final String LOG_HANDLER_EVENT = "Purchases-LogHandlerEvent";
4949
public static final String PLATFORM_NAME = "react-native";
50-
public static final String PLUGIN_VERSION = "8.0.0";
50+
public static final String PLUGIN_VERSION = "8.0.1";
5151

5252
private final ReactApplicationContext reactContext;
5353

ios/RNPurchases.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ - (NSString *)platformFlavor {
507507
}
508508

509509
- (NSString *)platformFlavorVersion {
510-
return @"8.0.0";
510+
return @"8.0.1";
511511
}
512512

513513
@end

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-purchases",
33
"title": "React Native Purchases",
4-
"version": "8.0.0",
4+
"version": "8.0.1",
55
"description": "React Native in-app purchases and subscriptions made easy. Supports iOS and Android. ",
66
"main": "dist/index.js",
77
"types": "dist/index.d.ts",

react-native-purchases-ui/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ android {
5959
minSdkVersion getExtOrIntegerDefault("minSdkVersion")
6060
targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")
6161
versionCode 1
62-
versionName '8.0.0'
62+
versionName '8.0.1'
6363
}
6464

6565
buildTypes {

react-native-purchases-ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-purchases-ui",
33
"title": "React Native Purchases UI",
4-
"version": "8.0.0",
4+
"version": "8.0.1",
55
"description": "React Native in-app purchases and subscriptions made easy. Supports iOS and Android.",
66
"main": "lib/commonjs/index",
77
"module": "lib/module/index",
@@ -115,6 +115,6 @@
115115
},
116116
"dependencies": {
117117
"@revenuecat/purchases-typescript-internal": "13.0.1",
118-
"react-native-purchases": "8.0.0"
118+
"react-native-purchases": "8.0.1"
119119
}
120120
}

scripts/docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!DOCTYPE html>
33
<html>
44
<head>
5-
<meta http-equiv="refresh" content="0; url=https://revenuecat.github.io/react-native-purchases-docs/8.0.0/" />
5+
<meta http-equiv="refresh" content="0; url=https://revenuecat.github.io/react-native-purchases-docs/8.0.1/" />
66
</head>
77
<body>
88
</body>

0 commit comments

Comments
 (0)