Skip to content

Commit

Permalink
release/2.4.3 (#446)
Browse files Browse the repository at this point in the history
- Update `purchases-ios` to version
[3.14.4](https://github.com/RevenueCat/purchases-ios/releases/tag/3.14.4)
  • Loading branch information
NachoSoto authored Nov 10, 2023
1 parent 7b06bba commit e7c96cf
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
ios-integration-test:
description: "Run iOS integration tests for Flutter"
macos:
xcode: 13.1.0
xcode: 13.4.1
steps:
- checkout
- run:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.4.3

- Update `purchases-ios` to version [3.14.4](https://github.com/RevenueCat/purchases-ios/releases/tag/3.14.4)

## 2.4.2

- Setting type of module to `commonjs` https://github.com/RevenueCat/cordova-plugin-purchases/pull/192
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.4.3 | 3.14.4 | 4.6.1 | 2.0.2 |
| 2.4.2 | 3.14.1 | 4.6.1 | 2.0.1 |
| 2.4.1 | 3.14.1 | 4.6.1 | 2.0.1 |
| 2.4.0 | 3.13.0 | 4.4.0 | 1.10.0 |
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cordova-plugin-purchases",
"type": "commonjs",
"version": "2.4.2",
"version": "2.4.3",
"description": "Purchases Cordova Plugin",
"types": "./www/plugin.d.ts",
"cordova": {
Expand Down Expand Up @@ -41,6 +41,6 @@
"ts-jest": "^27.0.0-next.12",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
"typescript": "^4.9.3"
}
}
4 changes: 2 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<param name="android-package" value="com.revenuecat.purchases.PurchasesPlugin" />
</feature>
</config-file>
<framework src="com.revenuecat.purchases:purchases-hybrid-common:2.0.1" />
<framework src="com.revenuecat.purchases:purchases-hybrid-common:2.0.2" />
<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="2.0.1"/>
<pod name="PurchasesHybridCommon" spec="2.0.2"/>
</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.4.2";
public static final String PLUGIN_VERSION = "2.4.3";

@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 @@ -365,7 +365,7 @@ - (NSString *)platformFlavor {
}

- (NSString *)platformFlavorVersion {
return @"2.4.2";
return @"2.4.3";
}

@end

0 comments on commit e7c96cf

Please sign in to comment.