Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AUTOMATIC] Release/7.25.0 #963

Merged
merged 2 commits into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.24.1
7.25.0
22 changes: 15 additions & 7 deletions CHANGELOG.latest.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
### Bugfixes
* Fix issue with iOS purchaseProduct arguments (#957) via Josh Holtz (@joshdholtz)
### New Features
* Add font support to presentPaywall (#948) via Cesar de la Vega (@vegaro)
### Dependency Updates
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 10.3.2 (#962) via RevenueCat Git Bot (@RCGitBot)
* [Android 7.8.1](https://github.com/RevenueCat/purchases-android/releases/tag/7.8.1)
* [Android 7.8.0](https://github.com/RevenueCat/purchases-android/releases/tag/7.8.0)
* [Android 7.7.3](https://github.com/RevenueCat/purchases-android/releases/tag/7.7.3)
* [iOS 4.39.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.39.1)
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 10.3.1 (#960) via RevenueCat Git Bot (@RCGitBot)
* [Android 7.8.1](https://github.com/RevenueCat/purchases-android/releases/tag/7.8.1)
* [Android 7.8.0](https://github.com/RevenueCat/purchases-android/releases/tag/7.8.0)
* [Android 7.7.3](https://github.com/RevenueCat/purchases-android/releases/tag/7.7.3)
* [iOS 4.39.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.39.1)
### Other Changes
* Remove flipper from tester (#950) via Cesar de la Vega (@vegaro)
* Update Podfile.lock when upgrading phc (#946) via Cesar de la Vega (@vegaro)
* Update changelog to include behavior change (#945) via Cesar de la Vega (@vegaro)
* Fix `generate_docs` (#943) via Cesar de la Vega (@vegaro)
* Add trigger_bump lane (#942) via Cesar de la Vega (@vegaro)
* Remove usage of RCTEventEmitter in Android (#961) via Cesar de la Vega (@vegaro)
* Fix pod install of sample when updating phc (#954) via Cesar de la Vega (@vegaro)
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 7.25.0
### New Features
* Add font support to presentPaywall (#948) via Cesar de la Vega (@vegaro)
### Dependency Updates
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 10.3.2 (#962) via RevenueCat Git Bot (@RCGitBot)
* [Android 7.8.1](https://github.com/RevenueCat/purchases-android/releases/tag/7.8.1)
* [Android 7.8.0](https://github.com/RevenueCat/purchases-android/releases/tag/7.8.0)
* [Android 7.7.3](https://github.com/RevenueCat/purchases-android/releases/tag/7.7.3)
* [iOS 4.39.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.39.1)
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 10.3.1 (#960) via RevenueCat Git Bot (@RCGitBot)
* [Android 7.8.1](https://github.com/RevenueCat/purchases-android/releases/tag/7.8.1)
* [Android 7.8.0](https://github.com/RevenueCat/purchases-android/releases/tag/7.8.0)
* [Android 7.7.3](https://github.com/RevenueCat/purchases-android/releases/tag/7.7.3)
* [iOS 4.39.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.39.1)
### Other Changes
* Remove usage of RCTEventEmitter in Android (#961) via Cesar de la Vega (@vegaro)
* Fix pod install of sample when updating phc (#954) via Cesar de la Vega (@vegaro)

## 7.24.1
### Bugfixes
* Fix issue with iOS purchaseProduct arguments (#957) via Josh Holtz (@joshdholtz)
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 |
|---------------|-------------|-----------------|-----------------------|
| 7.25.0 | 4.39.1 | 7.8.1 | 10.3.2 |
| 7.24.1 | 4.39.0 | 7.7.2 | 10.2.0 |
| 7.24.0 | 4.39.0 | 7.7.2 | 10.2.0 |
| 7.23.0 | 4.37.0 | 7.7.1 | 9.9.0 |
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ android {
minSdkVersion getExtOrIntegerDefault('minSdkVersion')
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
versionCode 1
versionName '7.24.1'
versionName '7.25.0'
}

buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class RNPurchasesModule extends ReactContextBaseJavaModule implements Upd
private static final String CUSTOMER_INFO_UPDATED = "Purchases-CustomerInfoUpdated";
private static final String LOG_HANDLER_EVENT = "Purchases-LogHandlerEvent";
public static final String PLATFORM_NAME = "react-native";
public static final String PLUGIN_VERSION = "7.24.1";
public static final String PLUGIN_VERSION = "7.25.0";

private final ReactApplicationContext reactContext;

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

- (NSString *)platformFlavorVersion {
return @"7.24.1";
return @"7.25.0";
}

@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": "7.24.1",
"version": "7.25.0",
"description": "React Native in-app purchases and subscriptions made easy. Supports iOS and Android. ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion react-native-purchases-ui/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ android {
minSdkVersion getExtOrIntegerDefault("minSdkVersion")
targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")
versionCode 1
versionName '7.24.1'
versionName '7.25.0'
}

buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions react-native-purchases-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-purchases-ui",
"title": "React Native Purchases UI",
"version": "7.24.1",
"version": "7.25.0",
"description": "React Native in-app purchases and subscriptions made easy. Supports iOS and Android.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down Expand Up @@ -115,6 +115,6 @@
},
"dependencies": {
"@revenuecat/purchases-typescript-internal": "10.1.0",
"react-native-purchases": "7.24.1"
"react-native-purchases": "7.25.0"
}
}
2 changes: 1 addition & 1 deletion scripts/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; url=https://revenuecat.github.io/react-native-purchases-docs/7.24.1/" />
<meta http-equiv="refresh" content="0; url=https://revenuecat.github.io/react-native-purchases-docs/7.25.0/" />
</head>
<body>
</body>
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6977,7 +6977,7 @@ __metadata:
react: 18.2.0
react-native: 0.73.5
react-native-builder-bob: ^0.20.0
react-native-purchases: 7.24.1
react-native-purchases: 7.25.0
ts-jest: ^29.1.2
tslint: ^5.20.0
tslint-config-prettier: ^1.18.0
Expand All @@ -6989,7 +6989,7 @@ __metadata:
languageName: unknown
linkType: soft

"react-native-purchases@7.24.1, react-native-purchases@workspace:.":
"react-native-purchases@7.25.0, react-native-purchases@workspace:.":
version: 0.0.0-use.local
resolution: "react-native-purchases@workspace:."
dependencies:
Expand Down