From bba6119e1ddde0396ad39302360250f8b30eca90 Mon Sep 17 00:00:00 2001 From: RevenueCat CI Date: Thu, 11 Jul 2024 09:20:18 +0000 Subject: [PATCH] Version bump for 7.28.1 --- .version | 2 +- CHANGELOG.latest.md | 18 +++--------------- CHANGELOG.md | 5 +++++ android/build.gradle | 2 +- .../purchases/react/RNPurchasesModule.java | 2 +- ios/RNPurchases.m | 2 +- package.json | 2 +- react-native-purchases-ui/android/build.gradle | 2 +- react-native-purchases-ui/package.json | 4 ++-- scripts/docs/index.html | 2 +- yarn.lock | 4 ++-- 11 files changed, 19 insertions(+), 26 deletions(-) diff --git a/.version b/.version index 757a860d..b4784d24 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -7.28.0 +7.28.1 diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index c4cac808..33686d96 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -1,15 +1,3 @@ -### New Features -* Add support for `DEFERRED` upgrades and updates purchases-hybrid-common to 11.1.1 (#1029) via RevenueCat Git Bot (@RCGitBot) - * [Android 7.12.0](https://github.com/RevenueCat/purchases-android/releases/tag/7.12.0) - * [iOS 4.43.2](https://github.com/RevenueCat/purchases-ios/releases/tag/4.43.2) - * [iOS 4.43.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.43.1) -### Dependency Updates -* [AUTOMATIC BUMP] Updates purchases-hybrid-common to 11.0.0 (#1026) via RevenueCat Git Bot (@RCGitBot) - * [Android 7.12.0](https://github.com/RevenueCat/purchases-android/releases/tag/7.12.0) - * [iOS 4.43.2](https://github.com/RevenueCat/purchases-ios/releases/tag/4.43.2) - * [iOS 4.43.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.43.1) -* Bump fastlane from 2.221.0 to 2.221.1 (#1023) via dependabot[bot] (@dependabot[bot]) -* Bump ws from 6.2.2 to 6.2.3 (#1021) via dependabot[bot] (@dependabot[bot]) -* Bump fastlane from 2.220.0 to 2.221.0 (#1020) via dependabot[bot] (@dependabot[bot]) -### Other Changes -* get_phc_version now also checks PHC UI versions (#1019) via JayShortway (@JayShortway) +### Bugfixes +* [EXTERNAL] Make the setProxyURL a promise to wait for the native code to set the proxy URL (#1033) contributed by @dangilbert (#1035) via Toni Rico (@tonidero) +* Setting `proxyURL` should not require configure (#1032) via Cesar de la Vega (@vegaro) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdbc8fab..4b5c654c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 7.28.1 +### Bugfixes +* [EXTERNAL] Make the setProxyURL a promise to wait for the native code to set the proxy URL (#1033) contributed by @dangilbert (#1035) via Toni Rico (@tonidero) +* Setting `proxyURL` should not require configure (#1032) via Cesar de la Vega (@vegaro) + ## 7.28.0 ### New Features * Add support for `DEFERRED` upgrades and updates purchases-hybrid-common to 11.1.1 (#1029) via RevenueCat Git Bot (@RCGitBot) diff --git a/android/build.gradle b/android/build.gradle index 66ac302a..74e72ba6 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -29,7 +29,7 @@ android { minSdkVersion getExtOrIntegerDefault('minSdkVersion') targetSdkVersion getExtOrIntegerDefault('targetSdkVersion') versionCode 1 - versionName '7.28.0' + versionName '7.28.1' } buildTypes { diff --git a/android/src/main/java/com/revenuecat/purchases/react/RNPurchasesModule.java b/android/src/main/java/com/revenuecat/purchases/react/RNPurchasesModule.java index 40297673..0ff53bb2 100644 --- a/android/src/main/java/com/revenuecat/purchases/react/RNPurchasesModule.java +++ b/android/src/main/java/com/revenuecat/purchases/react/RNPurchasesModule.java @@ -47,7 +47,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.28.0"; + public static final String PLUGIN_VERSION = "7.28.1"; private final ReactApplicationContext reactContext; diff --git a/ios/RNPurchases.m b/ios/RNPurchases.m index 86f26bf5..f274bdd0 100644 --- a/ios/RNPurchases.m +++ b/ios/RNPurchases.m @@ -501,7 +501,7 @@ - (NSString *)platformFlavor { } - (NSString *)platformFlavorVersion { - return @"7.28.0"; + return @"7.28.1"; } @end diff --git a/package.json b/package.json index 4d8514af..84707387 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-purchases", "title": "React Native Purchases", - "version": "7.28.0", + "version": "7.28.1", "description": "React Native in-app purchases and subscriptions made easy. Supports iOS and Android. ", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/react-native-purchases-ui/android/build.gradle b/react-native-purchases-ui/android/build.gradle index 436a049c..70d91860 100644 --- a/react-native-purchases-ui/android/build.gradle +++ b/react-native-purchases-ui/android/build.gradle @@ -59,7 +59,7 @@ android { minSdkVersion getExtOrIntegerDefault("minSdkVersion") targetSdkVersion getExtOrIntegerDefault("targetSdkVersion") versionCode 1 - versionName '7.28.0' + versionName '7.28.1' } buildTypes { diff --git a/react-native-purchases-ui/package.json b/react-native-purchases-ui/package.json index 4fb2dad1..8e0dce53 100644 --- a/react-native-purchases-ui/package.json +++ b/react-native-purchases-ui/package.json @@ -1,7 +1,7 @@ { "name": "react-native-purchases-ui", "title": "React Native Purchases UI", - "version": "7.28.0", + "version": "7.28.1", "description": "React Native in-app purchases and subscriptions made easy. Supports iOS and Android.", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -115,6 +115,6 @@ }, "dependencies": { "@revenuecat/purchases-typescript-internal": "10.1.0", - "react-native-purchases": "7.28.0" + "react-native-purchases": "7.28.1" } } diff --git a/scripts/docs/index.html b/scripts/docs/index.html index 959a25a3..2cc09c9a 100644 --- a/scripts/docs/index.html +++ b/scripts/docs/index.html @@ -2,7 +2,7 @@ - + diff --git a/yarn.lock b/yarn.lock index 06c8d1ac..7b4c218c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -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.28.0 + react-native-purchases: 7.28.1 ts-jest: ^29.1.2 tslint: ^5.20.0 tslint-config-prettier: ^1.18.0 @@ -6989,7 +6989,7 @@ __metadata: languageName: unknown linkType: soft -"react-native-purchases@7.28.0, react-native-purchases@workspace:.": +"react-native-purchases@7.28.1, react-native-purchases@workspace:.": version: 0.0.0-use.local resolution: "react-native-purchases@workspace:." dependencies: