From 000ea34c20e8346d521954b480530eeb757d76e2 Mon Sep 17 00:00:00 2001 From: RevenueCat CI Date: Thu, 8 Aug 2024 16:35:07 +0000 Subject: [PATCH] Version bump for 8.0.1 --- .version | 2 +- CHANGELOG.latest.md | 18 +++++------------- CHANGELOG.md | 8 ++++++++ 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, 24 insertions(+), 24 deletions(-) diff --git a/.version b/.version index ae9a76b9..cd1d2e94 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -8.0.0 +8.0.1 diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index 60ea8b02..aadcbf3e 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -1,14 +1,6 @@ -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). - -### Breaking Changes - -- v8.0 Release (#1050) via Will Taylor (@fire-at-will) - ### Dependency Updates - -- Bump fastlane from 2.221.1 to 2.222.0 (#1046) via dependabot[bot] (@dependabot[bot]) -- Fix ws affected by a DoS (#1043) via Cesar de la Vega (@vegaro) - -### Other Changes - -- docs: Update installation instructions for Expo (#1041) via Aman Mittal (@amandeepmittal) +* Updates purchases-hybrid-common to 13.0.1 (#1063) via Mark Villacampa (@MarkVillacampa) + * [Android 8.4.0](https://github.com/RevenueCat/purchases-android/releases/tag/8.4.0) + * [iOS 5.2.3](https://github.com/RevenueCat/purchases-ios/releases/tag/5.2.3) +* Bump danger from 9.4.3 to 9.5.0 (#1058) via dependabot[bot] (@dependabot[bot]) +* Bump fast-xml-parser from 4.4.0 to 4.4.1 (#1051) via dependabot[bot] (@dependabot[bot]) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ff18c50..52f5bac6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 8.0.1 +### Dependency Updates +* Updates purchases-hybrid-common to 13.0.1 (#1063) via Mark Villacampa (@MarkVillacampa) + * [Android 8.4.0](https://github.com/RevenueCat/purchases-android/releases/tag/8.4.0) + * [iOS 5.2.3](https://github.com/RevenueCat/purchases-ios/releases/tag/5.2.3) +* Bump danger from 9.4.3 to 9.5.0 (#1058) via dependabot[bot] (@dependabot[bot]) +* Bump fast-xml-parser from 4.4.0 to 4.4.1 (#1051) via dependabot[bot] (@dependabot[bot]) + ## 8.0.0 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). diff --git a/android/build.gradle b/android/build.gradle index 7f7ab4ff..52a1cec2 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -29,7 +29,7 @@ android { minSdkVersion getExtOrIntegerDefault('minSdkVersion') targetSdkVersion getExtOrIntegerDefault('targetSdkVersion') versionCode 1 - versionName '8.0.0' + versionName '8.0.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 e23da175..129053ce 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 = "8.0.0"; + public static final String PLUGIN_VERSION = "8.0.1"; private final ReactApplicationContext reactContext; diff --git a/ios/RNPurchases.m b/ios/RNPurchases.m index c43d0144..44115460 100644 --- a/ios/RNPurchases.m +++ b/ios/RNPurchases.m @@ -507,7 +507,7 @@ - (NSString *)platformFlavor { } - (NSString *)platformFlavorVersion { - return @"8.0.0"; + return @"8.0.1"; } @end diff --git a/package.json b/package.json index fe621912..f431d8ed 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-purchases", "title": "React Native Purchases", - "version": "8.0.0", + "version": "8.0.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 ddf1d53b..001196d8 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 '8.0.0' + versionName '8.0.1' } buildTypes { diff --git a/react-native-purchases-ui/package.json b/react-native-purchases-ui/package.json index 100783e8..5c72ba94 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": "8.0.0", + "version": "8.0.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": "13.0.1", - "react-native-purchases": "8.0.0" + "react-native-purchases": "8.0.1" } } diff --git a/scripts/docs/index.html b/scripts/docs/index.html index f7fffa4f..b370bdd1 100644 --- a/scripts/docs/index.html +++ b/scripts/docs/index.html @@ -2,7 +2,7 @@ - + diff --git a/yarn.lock b/yarn.lock index fe4addb8..51815b40 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7058,7 +7058,7 @@ __metadata: react: 18.2.0 react-native: 0.73.5 react-native-builder-bob: ^0.20.0 - react-native-purchases: 8.0.0 + react-native-purchases: 8.0.1 ts-jest: ^29.1.2 tslint: ^5.20.0 tslint-config-prettier: ^1.18.0 @@ -7070,7 +7070,7 @@ __metadata: languageName: unknown linkType: soft -"react-native-purchases@8.0.0, react-native-purchases@workspace:.": +"react-native-purchases@8.0.1, react-native-purchases@workspace:.": version: 0.0.0-use.local resolution: "react-native-purchases@workspace:." dependencies: