Skip to content

Commit

Permalink
release/3.5.4 (#359)
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)

---------

Co-authored-by: Toni Rico <antonio.rico.diez@revenuecat.com>
  • Loading branch information
NachoSoto and tonidero authored Nov 13, 2023
1 parent dcaa430 commit 6c9ebb0
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ commands:
steps:
- run:
name: Decode license in env variable
command: echo $BASE64_LICENSE | base64 --decode >> Unity_v2019.x.ulf
command: echo $UNITY_LICENSE_OLD_BASE64 | base64 --decode >> Unity_v2019.x.ulf
- run:
name: Import Unity license file
command: |
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
archive-ios:
description: "Run iOS integration tests for Unity"
macos:
xcode: 12.2.0
xcode: 12.5.1
steps:
- checkout
- attach_workspace:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.5.4

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

## 3.5.3

When installing this release, make sure to make a fresh installation by removing the RevenueCat folder before importing the package. That way obsolete files are deleted from your project.
Expand Down
8 changes: 6 additions & 2 deletions IntegrationTests/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ platform :ios do
workspace = options[:workspace]
fail ArgumentError, "missing workspace" unless workspace

match(type: "appstore")
gym(export_method: "app-store", workspace: workspace)
gym(
export_method: "app-store",
workspace: workspace,
skip_codesigning: true,
skip_package_ipa: true
)
end

end
2 changes: 1 addition & 1 deletion RevenueCat/Plugins/Android/PurchasesWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class PurchasesWrapper {
private static final String GET_PAYMENT_DISCOUNT = "_getPaymentDiscount";

private static final String PLATFORM_NAME = "unity";
private static final String PLUGIN_VERSION = "3.5.3";
private static final String PLUGIN_VERSION = "3.5.4";

private static String gameObject;
private static UpdatedPurchaserInfoListener listener = new UpdatedPurchaserInfoListener() {
Expand Down
4 changes: 2 additions & 2 deletions RevenueCat/Plugins/Editor/RevenueCatDependencies.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<dependencies>
<androidPackages>
<androidPackage spec="com.revenuecat.purchases:purchases-hybrid-common:[2.0.1]" />
<androidPackage spec="com.revenuecat.purchases:purchases-hybrid-common:[2.0.2]" />
<androidPackage spec="androidx.annotation:annotation:[1.2.0]" />
</androidPackages>
<iosPods>
<iosPod name="PurchasesHybridCommon" version="2.0.1" minTargetSdk="9.0"/>
<iosPod name="PurchasesHybridCommon" version="2.0.2" minTargetSdk="9.0"/>
</iosPods>
</dependencies>
2 changes: 1 addition & 1 deletion RevenueCat/Plugins/iOS/PurchasesUnityHelper.m
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ - (NSString *)platformFlavor {
}

- (NSString *)platformFlavorVersion {
return @"3.5.3";
return @"3.5.4";
}

@end
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5.3
3.5.4
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 version | BillingClient version | Unity IAP compatibility |
|---------|-------------|-----------------|----------------|-----------------------|-------------------------|
| 3.5.4 | 3.14.4 | 4.6.1 | 2.0.2 | 4.0.0 | Not compatible |
| 3.5.3 | 3.14.1 | 4.6.1 | 2.0.1 | 4.0.0 | Not compatible |
| 3.5.2 | 3.14.1 | 4.6.1 | 2.0.1 | 4.0.0 | Not compatible |
| 3.5.1 | 3.14.0 | 4.6.0 | 2.0.0 | 4.0.0 | Not compatible |
Expand Down
2 changes: 1 addition & 1 deletion scripts/create-unity-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fi
if [ -f $PROJECT/external-dependency-manager-*.unitypackage ]; then
echo "👌 External dependency manager plugin found. It will be added to the unitypackage."
else
wget https://github.com/googlesamples/unity-jar-resolver/raw/master/external-dependency-manager-latest.unitypackage -P $PROJECT
wget https://github.com/googlesamples/unity-jar-resolver/raw/v1.2.172/external-dependency-manager-latest.unitypackage -P $PROJECT
fi

if [ -f $PACKAGE ]; then
Expand Down

0 comments on commit 6c9ebb0

Please sign in to comment.