diff --git a/CHANGELOG.md b/CHANGELOG.md index 05b5a874..604c4283 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 3.1.0 + +- Properly scope Android package [#114](https://github.com/RevenueCat/react-native-purchases/pull/114) + - ⚠️**IMPORTANT**⚠️: You might need to relink the plugin since the Android package name has changed. All references to `com.reactlibrary.RNPurchasesPackage` in the code should be replace with `com.revenuecat.purchases.react.RNPurchasesPackage`. +- Apply correct array notation: [type] to type[] [#117](https://github.com/RevenueCat/react-native-purchases/pull/117) +- Adds subscription offers support for iOS https://docs.revenuecat.com/docs/ios-subscription-offers +- Introductory Price is now an object inside the PurchasesProduct object + ## 3.0.6 - Exports enums diff --git a/VERSIONS.md b/VERSIONS.md index 0537ca59..84a03a3d 100644 --- a/VERSIONS.md +++ b/VERSIONS.md @@ -1,6 +1,6 @@ | Version | iOS version | Android version | Common files version | |---------|-------------|-----------------|----------------------| -| 3.0.7 | 3.2.1 | 3.1.0 | 1.0.9 | +| 3.1.0 | 3.2.1 | 3.1.0 | 1.0.9 | | 3.0.6 | 3.0.1 | 3.0.4 | 1.0.5 | | 3.0.5 | 3.0.1 | 3.0.4 | 1.0.5 | | 3.0.4 | 3.0.1 | 3.0.4 | 1.0.5 | diff --git a/package.json b/package.json index c6dc997a..583e2fd2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-purchases", "title": "React Native Purchases", - "version": "3.0.6", + "version": "3.1.0", "description": "React Native in-app purchases and subscriptions made easy.", "main": "index.js", "types": "index.d.ts",