Skip to content

Commit 56dae82

Browse files
RCGitBotRevenueCat CI
andauthored
[AUTOMATIC] Release/7.24.1 (#958)
**This is an automatic release.** ### Bugfixes * Fix issue with iOS purchaseProduct arguments (#957) via Josh Holtz (@joshdholtz) ### 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) --------- Co-authored-by: RevenueCat CI <[email protected]>
1 parent 4ad5e14 commit 56dae82

File tree

12 files changed

+29
-28
lines changed

12 files changed

+29
-28
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.24.0
1+
7.24.1

CHANGELOG.latest.md

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,8 @@
1-
### New Features
2-
* Add `displayCloseButton` option to `PaywallView` (#913) via Cesar de la Vega (@vegaro)
3-
* This changes the behavior of the PaywallView and FooterPaywallView in iOS, which were being dismissed automatically after a successful purchase. After this change, iOS matches existing Android's behavior, in which the `onDismiss` callback will get called whenever the paywall should be dismissed: after the user presses the close button, or after a successful purchase.
4-
### Dependency Updates
5-
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 10.2.0 (#940) via RevenueCat Git Bot (@RCGitBot)
6-
* [Android 7.7.2](https://github.com/RevenueCat/purchases-android/releases/tag/7.7.2)
7-
* [iOS 4.39.0](https://github.com/RevenueCat/purchases-ios/releases/tag/4.39.0)
8-
* [iOS 4.38.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.38.1)
9-
* [iOS 4.38.0](https://github.com/RevenueCat/purchases-ios/releases/tag/4.38.0)
10-
* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 10.1.0 (#938) via RevenueCat Git Bot (@RCGitBot)
11-
* [Android 7.7.2](https://github.com/RevenueCat/purchases-android/releases/tag/7.7.2)
12-
* [iOS 4.39.0](https://github.com/RevenueCat/purchases-ios/releases/tag/4.39.0)
13-
* [iOS 4.38.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.38.1)
14-
* [iOS 4.38.0](https://github.com/RevenueCat/purchases-ios/releases/tag/4.38.0)
1+
### Bugfixes
2+
* Fix issue with iOS purchaseProduct arguments (#957) via Josh Holtz (@joshdholtz)
153
### Other Changes
16-
* Make hotfixes not deploy with the latest tag nor update latest docs (#937) via Toni Rico (@tonidero)
17-
* Update RELEASING.md (#936) via Cesar de la Vega (@vegaro)
18-
* Add 6.7.2 to changelog (#935) via Cesar de la Vega (@vegaro)
4+
* Remove flipper from tester (#950) via Cesar de la Vega (@vegaro)
5+
* Update Podfile.lock when upgrading phc (#946) via Cesar de la Vega (@vegaro)
6+
* Update changelog to include behavior change (#945) via Cesar de la Vega (@vegaro)
7+
* Fix `generate_docs` (#943) via Cesar de la Vega (@vegaro)
8+
* Add trigger_bump lane (#942) via Cesar de la Vega (@vegaro)

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 7.24.1
2+
### Bugfixes
3+
* Fix issue with iOS purchaseProduct arguments (#957) via Josh Holtz (@joshdholtz)
4+
### Other Changes
5+
* Remove flipper from tester (#950) via Cesar de la Vega (@vegaro)
6+
* Update Podfile.lock when upgrading phc (#946) via Cesar de la Vega (@vegaro)
7+
* Update changelog to include behavior change (#945) via Cesar de la Vega (@vegaro)
8+
* Fix `generate_docs` (#943) via Cesar de la Vega (@vegaro)
9+
* Add trigger_bump lane (#942) via Cesar de la Vega (@vegaro)
10+
111
## 7.24.0
212
### New Features
313
* Add `displayCloseButton` option to `PaywallView` (#913) via Cesar de la Vega (@vegaro)

VERSIONS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
| Version | iOS version | Android version | Common files version |
22
|---------------|-------------|-----------------|-----------------------|
3+
| 7.24.1 | 4.39.0 | 7.7.2 | 10.2.0 |
34
| 7.24.0 | 4.39.0 | 7.7.2 | 10.2.0 |
45
| 7.23.0 | 4.37.0 | 7.7.1 | 9.9.0 |
56
| 7.22.0 | 4.37.0 | 7.6.0 | 9.8.0 |

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.24.0'
32+
versionName '7.24.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
@@ -46,7 +46,7 @@ public class RNPurchasesModule extends ReactContextBaseJavaModule implements Upd
4646
private static final String CUSTOMER_INFO_UPDATED = "Purchases-CustomerInfoUpdated";
4747
private static final String LOG_HANDLER_EVENT = "Purchases-LogHandlerEvent";
4848
public static final String PLATFORM_NAME = "react-native";
49-
public static final String PLUGIN_VERSION = "7.24.0";
49+
public static final String PLUGIN_VERSION = "7.24.1";
5050

5151
private final ReactApplicationContext reactContext;
5252

ios/RNPurchases.m

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

492492
- (NSString *)platformFlavorVersion {
493-
return @"7.24.0";
493+
return @"7.24.1";
494494
}
495495

496496
@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.24.0",
4+
"version": "7.24.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.24.0'
62+
versionName '7.24.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.24.0",
4+
"version": "7.24.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": "10.1.0",
118-
"react-native-purchases": "7.24.0"
118+
"react-native-purchases": "7.24.1"
119119
}
120120
}

0 commit comments

Comments
 (0)