diff --git a/.version b/.version index 7f605a7744..f584d6c668 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -4.37.0-SNAPSHOT +4.36.1 diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index ac532beda0..65903ea705 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -1,12 +1,8 @@ -_This release is compatible with `Xcode 15.3 beta 2`_ - -### New Features -* `NonSubscriptionTransaction`: expose `storeTransactionIdentifier` (#3639) via NachoSoto (@NachoSoto) ### RevenueCatUI -* `Paywalls`: new `presentationMode` parameter (by @Lascorbe) (#3638) via NachoSoto (@NachoSoto) -### Bugfixes -* Add explicit `visionOS` deployment target (#3642) via NachoSoto (@NachoSoto) +* `Paywalls`: prioritize `Locale.current` over `Locale.preferredLocales` (#3657) via NachoSoto (@NachoSoto) +* `Paywalls`: add logs for localization lookup (#3649) via NachoSoto (@NachoSoto) ### Dependency Updates -* Bump cocoapods from 1.15.0 to 1.15.1 (#3637) via dependabot[bot] (@dependabot[bot]) +* Bump cocoapods from 1.15.1 to 1.15.2 (#3648) via dependabot[bot] (@dependabot[bot]) ### Other Changes -* `Xcode 15.3 beta 2`: remove `nonisolated` workaround (#3640) via NachoSoto (@NachoSoto) +* `Tests`: fix iOS 15 test crash (#3650) via NachoSoto (@NachoSoto) +* `CircleCI`: remove duplicate `install-dependencies` (#3643) via NachoSoto (@NachoSoto) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b0a31c4c4..fea4fc24de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 4.36.1 +### RevenueCatUI +* `Paywalls`: prioritize `Locale.current` over `Locale.preferredLocales` (#3657) via NachoSoto (@NachoSoto) +* `Paywalls`: add logs for localization lookup (#3649) via NachoSoto (@NachoSoto) +### Dependency Updates +* Bump cocoapods from 1.15.1 to 1.15.2 (#3648) via dependabot[bot] (@dependabot[bot]) +### Other Changes +* `Tests`: fix iOS 15 test crash (#3650) via NachoSoto (@NachoSoto) +* `CircleCI`: remove duplicate `install-dependencies` (#3643) via NachoSoto (@NachoSoto) + ## 4.36.0 _This release is compatible with `Xcode 15.3 beta 2`_ diff --git a/RevenueCat.podspec b/RevenueCat.podspec index e54abb96cc..bc042e57ab 100644 --- a/RevenueCat.podspec +++ b/RevenueCat.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RevenueCat" - s.version = "4.37.0-SNAPSHOT" + s.version = "4.36.1" s.summary = "Subscription and in-app-purchase backend service." s.description = <<-DESC diff --git a/RevenueCatUI.podspec b/RevenueCatUI.podspec index 5aa8af24d1..0e686f2c32 100644 --- a/RevenueCatUI.podspec +++ b/RevenueCatUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RevenueCatUI" - s.version = "4.37.0-SNAPSHOT" + s.version = "4.36.1" s.summary = "UI library for RevenueCat paywalls." s.description = <<-DESC diff --git a/Sources/Info.plist b/Sources/Info.plist index f3315850b2..95ae3a73c3 100644 --- a/Sources/Info.plist +++ b/Sources/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 4.37.0 + 4.36.1 CFBundleVersion $(CURRENT_PROJECT_VERSION) LSApplicationCategoryType diff --git a/Sources/Misc/SystemInfo.swift b/Sources/Misc/SystemInfo.swift index 3ce9e70544..3a45483931 100644 --- a/Sources/Misc/SystemInfo.swift +++ b/Sources/Misc/SystemInfo.swift @@ -70,7 +70,7 @@ class SystemInfo { } static var frameworkVersion: String { - return "4.37.0-SNAPSHOT" + return "4.36.1" } static var systemVersion: String { diff --git a/Tests/BackendIntegrationTestApp/Info.plist b/Tests/BackendIntegrationTestApp/Info.plist index 395484a083..c94267d458 100644 --- a/Tests/BackendIntegrationTestApp/Info.plist +++ b/Tests/BackendIntegrationTestApp/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 4.37.0 + 4.36.1 CFBundleVersion 1 LSRequiresIPhoneOS diff --git a/Tests/BackendIntegrationTests/Info.plist b/Tests/BackendIntegrationTests/Info.plist index 009a7bbf96..3dda1e7c7e 100644 --- a/Tests/BackendIntegrationTests/Info.plist +++ b/Tests/BackendIntegrationTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 4.37.0 + 4.36.1 CFBundleVersion 1 diff --git a/Tests/UnitTests/Info.plist b/Tests/UnitTests/Info.plist index 009a7bbf96..3dda1e7c7e 100644 --- a/Tests/UnitTests/Info.plist +++ b/Tests/UnitTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 4.37.0 + 4.36.1 CFBundleVersion 1 diff --git a/Tests/UnitTestsHostApp/Info.plist b/Tests/UnitTestsHostApp/Info.plist index b460d409bf..e7ab2188c5 100644 --- a/Tests/UnitTestsHostApp/Info.plist +++ b/Tests/UnitTestsHostApp/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 4.37.0 + 4.36.1 CFBundleVersion 1 LSRequiresIPhoneOS diff --git a/scripts/docs/index.html b/scripts/docs/index.html index 68f784edbb..0829a4ab2a 100644 --- a/scripts/docs/index.html +++ b/scripts/docs/index.html @@ -2,7 +2,7 @@ - + diff --git a/scripts/docs/v4_api_migration_guide.html b/scripts/docs/v4_api_migration_guide.html index 298d430919..198c3e9923 100644 --- a/scripts/docs/v4_api_migration_guide.html +++ b/scripts/docs/v4_api_migration_guide.html @@ -2,7 +2,7 @@ - +