react-native-purchases 9.10.4 → 9.10.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![License](https://img.shields.io/cocoapods/l/RevenueCat.svg?style=flat)](http://cocoapods.org/pods/RevenueCat)
4
4
 
5
- RevenueCat is a powerful, reliable, and free to use in-app purchase server with cross-platform support. Our open-source framework provides a backend and a wrapper around StoreKit and Google Play Billing to make implementing in-app purchases and subscriptions easy.
5
+ RevenueCat is a powerful, reliable, and free to use in-app purchase server with cross-platform support. Our open-source framework provides a backend and a wrapper around StoreKit, Google Play Billing and RevenueCat Web Billing to make implementing in-app purchases and subscriptions easy.
6
6
 
7
7
  Whether you are building a new app or already have millions of customers, you can use RevenueCat to:
8
8
 
@@ -17,7 +17,7 @@ Sign up to [get started for free](https://app.revenuecat.com/signup).
17
17
 
18
18
  ## React Native Purchases
19
19
 
20
- React Native Purchases is the client for the [RevenueCat](https://www.revenuecat.com/) subscription and purchase tracking system. It is an open source framework that provides a wrapper around `StoreKit`, `Google Play Billing` and the RevenueCat backend to make implementing in-app purchases in `React Native` easy.
20
+ React Native Purchases is the client for the [RevenueCat](https://www.revenuecat.com/) subscription and purchase tracking system. It is an open source framework that provides a wrapper around StoreKit, Google Play Billing, RevenueCat Web Billing and the RevenueCat backend to make implementing in-app purchases in React Native easy.
21
21
 
22
22
  ## Migrating from React-Native Purchases v4 to v5
23
23
  - See our [Migration guide](./v4_to_v5_migration_guide.md)
@@ -25,6 +25,6 @@ Pod::Spec.new do |spec|
25
25
  ]
26
26
 
27
27
  spec.dependency "React-Core"
28
- spec.dependency "PurchasesHybridCommon", '17.41.0'
28
+ spec.dependency "PurchasesHybridCommon", '17.41.1'
29
29
  spec.swift_version = '5.7'
30
30
  end
@@ -29,7 +29,7 @@ android {
29
29
  minSdkVersion getExtOrIntegerDefault('minSdkVersion')
30
30
  targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
31
31
  versionCode 1
32
- versionName '9.10.4'
32
+ versionName '9.10.5'
33
33
  }
34
34
 
35
35
  buildTypes {
@@ -121,6 +121,6 @@ def kotlin_version = getExtOrDefault('kotlinVersion')
121
121
  dependencies {
122
122
  //noinspection GradleDynamicVersion
123
123
  api 'com.facebook.react:react-native:+'
124
- implementation 'com.revenuecat.purchases:purchases-hybrid-common:17.41.0'
124
+ implementation 'com.revenuecat.purchases:purchases-hybrid-common:17.41.1'
125
125
  implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
126
126
  }
@@ -51,7 +51,7 @@ public class RNPurchasesModule extends ReactContextBaseJavaModule implements Upd
51
51
  private static final String TRACKED_EVENT = "Purchases-TrackedEvent";
52
52
  private static final String DEBUG_EVENT = "Purchases-DebugEvent";
53
53
  public static final String PLATFORM_NAME = "react-native";
54
- public static final String PLUGIN_VERSION = "9.10.4";
54
+ public static final String PLUGIN_VERSION = "9.10.5";
55
55
 
56
56
  private final ReactApplicationContext reactContext;
57
57
 
package/ios/RNPurchases.m CHANGED
@@ -681,7 +681,7 @@ readyForPromotedProduct:(RCStoreProduct *)product
681
681
  }
682
682
 
683
683
  - (NSString *)platformFlavorVersion {
684
- return @"9.10.4";
684
+ return @"9.10.5";
685
685
  }
686
686
 
687
687
  @end
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-purchases",
3
3
  "title": "React Native Purchases",
4
- "version": "9.10.4",
4
+ "version": "9.10.5",
5
5
  "description": "React Native in-app purchases and subscriptions made easy. Supports iOS and Android. ",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -114,7 +114,7 @@
114
114
  ]
115
115
  },
116
116
  "dependencies": {
117
- "@revenuecat/purchases-js-hybrid-mappings": "17.41.0",
118
- "@revenuecat/purchases-typescript-internal": "17.41.0"
117
+ "@revenuecat/purchases-js-hybrid-mappings": "17.41.1",
118
+ "@revenuecat/purchases-typescript-internal": "17.41.1"
119
119
  }
120
120
  }