Skip to content

Commit

Permalink
prep for version 2.3.1 (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
beylmk committed Sep 1, 2021
1 parent a9dca81 commit eacafcc
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 2.3.1

- Bumped purchases-android to 4.3.1 [Changelog here](https://github.com/RevenueCat/purchases-android/releases/4.3.1),
which fixes canMakePayments not returning (see related issue: https://github.com/RevenueCat/purchases-unity/issues/61)
- Bumped purchases-ios to 3.12.3 [Changelog here](https://github.com/RevenueCat/purchases-ios/releases/tag/3.12.3)
- Bumped purchases-hybrid-common to 1.9.1 [Changelog here](https://github.com/RevenueCat/purchases-hybrid-common/releases/tag/1.9.1)

## 2.3.0

### Identity V3:
Expand Down
1 change: 1 addition & 0 deletions VERSIONS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| Version | iOS version | Android version | Common files version |
| ------- | ----------- | --------------- | -------------------- |
| 2.3.1 | 3.12.3 | 4.3.1 | 1.9.1 |
| 2.3.0 | 3.12.2 | 4.3.0 | 1.8.0 |
| 2.2.0 | 3.11.1 | 4.2.1 | 1.7.1 |
| 2.1.1 | 3.10.7 | 4.0.5 | 1.6.2 |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-purchases",
"version": "2.3.0",
"version": "2.3.1",
"description": "Purchases Cordova Plugin",
"types": "./www/plugin.d.ts",
"cordova": {
Expand Down
6 changes: 3 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-purchases" version="2.3.0">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-purchases" version="2.3.1">

<dependency id="cordova-annotated-plugin-android" />

Expand All @@ -16,7 +16,7 @@
<param name="android-package" value="com.revenuecat.purchases.PurchasesPlugin" />
</feature>
</config-file>
<framework src="com.revenuecat.purchases:purchases-hybrid-common:1.8.0" />
<framework src="com.revenuecat.purchases:purchases-hybrid-common:1.9.1" />
<framework src="androidx.annotation:annotation:[1.2.0]"/>
<source-file src="src/android/PurchasesPlugin.java" target-dir="src/com/revenuecat/purchases"/>
</platform>
Expand All @@ -34,7 +34,7 @@
<source url="https://github.com/CocoaPods/Specs.git"/>
</config>
<pods use-frameworks="true">
<pod name="PurchasesHybridCommon" spec="1.8.0"/>
<pod name="PurchasesHybridCommon" spec="1.9.1"/>
</pods>
</podspec>
</platform>
Expand Down
2 changes: 1 addition & 1 deletion src/android/PurchasesPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
public class PurchasesPlugin extends AnnotatedCordovaPlugin {

public static final String PLATFORM_NAME = "cordova";
public static final String PLUGIN_VERSION = "2.3.0";
public static final String PLUGIN_VERSION = "2.3.1";

@PluginAction(thread = ExecutionThread.UI, actionName = "setupPurchases", isAutofinish = false)
private void setupPurchases(String apiKey, @Nullable String appUserID, boolean observerMode,
Expand Down
2 changes: 1 addition & 1 deletion src/ios/CDVPurchasesPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ - (NSString *)platformFlavor {
}

- (NSString *)platformFlavorVersion {
return @"2.3.0";
return @"2.3.1";
}

@end

0 comments on commit eacafcc

Please sign in to comment.