Skip to content

Commit 517dce4

Browse files
Version bump for 8.0.0-beta.1
1 parent c448205 commit 517dce4

File tree

11 files changed

+39
-18
lines changed

11 files changed

+39
-18
lines changed

.version

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

CHANGELOG.latest.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
### Dependency Updates
2-
* Bump ip from 1.1.8 to 1.1.9 (#909) via dependabot[bot] (@dependabot[bot])
3-
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 9.7.2 (#908) via RevenueCat Git Bot (@RCGitBot)
4-
* [Android 7.5.2](https://github.com/RevenueCat/purchases-android/releases/tag/7.5.2)
5-
* [iOS 4.36.3](https://github.com/RevenueCat/purchases-ios/releases/tag/4.36.3)
6-
### Other Changes
7-
* Update cocoapods in Gemfile (#906) via Cesar de la Vega (@vegaro)
1+
### Other Changes
2+
* Bump PHC to version 10.0.0-beta.1 via Mark Villacampa (@MarkVillacampa)
3+
* Add `onRestoreStarted` (#907) via Toni Rico (@tonidero)
4+
* Add `onPurchaseStarted` event (#911) via Cesar de la Vega (@vegaro)
5+
* [AUTOMATIC] Release/7.21.1 (#910)
6+
7+
### Dependency Updates
8+
* Bump ip from 1.1.8 to 1.1.9 (#909) via dependabot[bot] (@dependabot[bot])
9+
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 9.7.2 (#908) via RevenueCat Git Bot (@RCGitBot)
10+
* [Android 7.5.2](https://github.com/RevenueCat/purchases-android/releases/tag/7.5.2)
11+
* [iOS 4.36.3](https://github.com/RevenueCat/purchases-ios/releases/tag/4.36.3)
12+
### Other Changes
13+
* Update cocoapods in Gemfile (#906) via Cesar de la Vega (@vegaro)

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 8.0.0-beta.1
2+
### Other Changes
3+
* Bump PHC to version 10.0.0-beta.1 via Mark Villacampa (@MarkVillacampa)
4+
* Add `onRestoreStarted` (#907) via Toni Rico (@tonidero)
5+
* Add `onPurchaseStarted` event (#911) via Cesar de la Vega (@vegaro)
6+
* [AUTOMATIC] Release/7.21.1 (#910)
7+
8+
### Dependency Updates
9+
* Bump ip from 1.1.8 to 1.1.9 (#909) via dependabot[bot] (@dependabot[bot])
10+
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 9.7.2 (#908) via RevenueCat Git Bot (@RCGitBot)
11+
* [Android 7.5.2](https://github.com/RevenueCat/purchases-android/releases/tag/7.5.2)
12+
* [iOS 4.36.3](https://github.com/RevenueCat/purchases-ios/releases/tag/4.36.3)
13+
### Other Changes
14+
* Update cocoapods in Gemfile (#906) via Cesar de la Vega (@vegaro)
15+
116
## 7.21.1
217
### Dependency Updates
318
* Bump ip from 1.1.8 to 1.1.9 (#909) via dependabot[bot] (@dependabot[bot])

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 '7.21.1'
32+
versionName '8.0.0-beta.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
@@ -45,7 +45,7 @@ public class RNPurchasesModule extends ReactContextBaseJavaModule implements Upd
4545
private static final String CUSTOMER_INFO_UPDATED = "Purchases-CustomerInfoUpdated";
4646
private static final String LOG_HANDLER_EVENT = "Purchases-LogHandlerEvent";
4747
public static final String PLATFORM_NAME = "react-native";
48-
public static final String PLUGIN_VERSION = "7.21.1";
48+
public static final String PLUGIN_VERSION = "8.0.0-beta.1";
4949

5050
private final ReactApplicationContext reactContext;
5151

ios/RNPurchases.m

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

490490
- (NSString *)platformFlavorVersion {
491-
return @"7.21.1";
491+
return @"8.0.0-beta.1";
492492
}
493493

494494
@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": "7.21.1",
4+
"version": "8.0.0-beta.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 '7.21.1'
62+
versionName '8.0.0-beta.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": "7.21.1",
4+
"version": "8.0.0-beta.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",
@@ -114,6 +114,6 @@
114114
},
115115
"dependencies": {
116116
"@revenuecat/purchases-typescript-internal": "8.10.1",
117-
"react-native-purchases": "7.21.1"
117+
"react-native-purchases": "8.0.0-beta.1"
118118
}
119119
}

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/7.21.1/" />
5+
<meta http-equiv="refresh" content="0; url=https://revenuecat.github.io/react-native-purchases-docs/8.0.0-beta.1/" />
66
</head>
77
<body>
88
</body>

0 commit comments

Comments
 (0)