diff --git a/.jazzy.yaml b/.jazzy.yaml index 7656f320bc..cef61987e0 100644 --- a/.jazzy.yaml +++ b/.jazzy.yaml @@ -2,9 +2,9 @@ clean: true author: RevenueCat author_url: https://revenuecat.com sdk: iphonesimulator -module_version: 4.14.0-SNAPSHOT +module_version: 4.13.3 github_url: https://github.com/revenuecat/purchases-ios -github_file_prefix: https://github.com/revenuecat/purchases-ios/tree/4.14.0-SNAPSHOT +github_file_prefix: https://github.com/revenuecat/purchases-ios/tree/4.13.3 output: generated_docs include: - "Sources/**/*" diff --git a/.version b/.version index 9fb72d0c67..89c318cccd 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -4.14.0-SNAPSHOT +4.13.3 diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index 067ad9ffb6..6600982069 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -1,23 +1,2 @@ -### Bugfixes -* Purchasing: fixed consumable purchases by fixing transaction-finishing (#1965) via NachoSoto (@NachoSoto) -* `ErrorUtils`: improved logging and `localizedDescription` to include underlying errors (#1974) via NachoSoto (@NachoSoto) -* `PaymentQueueWrapper`: also implement `shouldShowPriceConsent` (#1963) via NachoSoto (@NachoSoto) -* `ReceiptFetcher`: added retry mechanism (#1945) via NachoSoto (@NachoSoto) -* `PaymentQueueWrapper`: also conform to `SKPaymentTransactionObserver` to fix promoted purchases (#1962) via NachoSoto (@NachoSoto) ### Other Changes -* Updating great support link via Miguel José Carranza Guisado (@MiguelCarranza) -* `OfferingsManager`: added ability to fail if any product is not found (#1976) via NachoSoto (@NachoSoto) -* `OfferingsManager`: added missing test for ignoring missing products (#1975) via NachoSoto (@NachoSoto) -* `PaymentQueueWrapper`: improved abstraction for active `SKPaymentQueue` wrapper (#1968) via NachoSoto (@NachoSoto) -* `ErrorUtils.purchasesError(withUntypedError:)` handle `PurchasesErrorConvertible` (#1973) via NachoSoto (@NachoSoto) -* Renamed `CallbackCache.add(callback:)` (#1970) via NachoSoto (@NachoSoto) -* Fixed iOS 12/13 test snapshots (#1972) via NachoSoto (@NachoSoto) -* Moved `SKPaymentQueue.presentCodeRedemptionSheet` to `StoreKitWorkarounds` (#1967) via NachoSoto (@NachoSoto) -* `Async.call` method to convert completion-block call to `async` (#1969) via NachoSoto (@NachoSoto) -* Remind about updating docs and parity spreadsheet on minor releases (#1955) via Cesar de la Vega (@vegaro) -* `PostReceiptDataOperation`: added `initiationSource` parameter (#1957) via NachoSoto (@NachoSoto) -* `StoreKit1Wrapper`: separated `SKPaymentTransactionObserver` and `SKPaymentQueueDelegate` implementations (#1961) via NachoSoto (@NachoSoto) -* Refactored `Error.isCancelledError` into `Error+Extensions` (#1960) via NachoSoto (@NachoSoto) -* Update fastlane plugin (#1959) via Cesar de la Vega (@vegaro) -* `Integration Tests`: simplified `testIneligibleForIntroAfterPurchaseExpires` to fix flakiness (#1952) via NachoSoto (@NachoSoto) -* fix typo in comment (#1956) via Andy Boedo (@aboedo) +* `TrialOrIntroPriceEligibilityChecker`: only use SK2 implementation if enabled (#1984) via NachoSoto (@NachoSoto) diff --git a/CHANGELOG.md b/CHANGELOG.md index d656f61d0d..5ba3306d29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.13.3 +### Other Changes +* `TrialOrIntroPriceEligibilityChecker`: only use SK2 implementation if enabled (#1984) via NachoSoto (@NachoSoto) + ## 4.13.2 ### Bugfixes * Purchasing: fixed consumable purchases by fixing transaction-finishing (#1965) via NachoSoto (@NachoSoto) diff --git a/RevenueCat.podspec b/RevenueCat.podspec index 126dbb95e1..08ca82707d 100644 --- a/RevenueCat.podspec +++ b/RevenueCat.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RevenueCat" - s.version = "4.14.0-SNAPSHOT" + s.version = "4.13.3" s.summary = "Subscription and in-app-purchase backend service." s.description = <<-DESC diff --git a/Sources/Info.plist b/Sources/Info.plist index 2ed72f83c9..a828c73d68 100644 --- a/Sources/Info.plist +++ b/Sources/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 4.14.0 + 4.13.3 CFBundleVersion $(CURRENT_PROJECT_VERSION) LSApplicationCategoryType diff --git a/Sources/Misc/SystemInfo.swift b/Sources/Misc/SystemInfo.swift index 57df015dc0..4faa1b9b9b 100644 --- a/Sources/Misc/SystemInfo.swift +++ b/Sources/Misc/SystemInfo.swift @@ -48,7 +48,7 @@ class SystemInfo { } static var frameworkVersion: String { - return "4.14.0-SNAPSHOT" + return "4.13.3" } static var systemVersion: String { diff --git a/Tests/BackendIntegrationTestApp/Info.plist b/Tests/BackendIntegrationTestApp/Info.plist index 21cade2b0d..da037d7575 100644 --- a/Tests/BackendIntegrationTestApp/Info.plist +++ b/Tests/BackendIntegrationTestApp/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 4.14.0 + 4.13.3 CFBundleVersion 1 LSRequiresIPhoneOS diff --git a/Tests/BackendIntegrationTests/Info.plist b/Tests/BackendIntegrationTests/Info.plist index 8132e9d046..bc1d5d9011 100644 --- a/Tests/BackendIntegrationTests/Info.plist +++ b/Tests/BackendIntegrationTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 4.14.0 + 4.13.3 CFBundleVersion 1 diff --git a/Tests/UnitTests/Info.plist b/Tests/UnitTests/Info.plist index 8132e9d046..bc1d5d9011 100644 --- a/Tests/UnitTests/Info.plist +++ b/Tests/UnitTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 4.14.0 + 4.13.3 CFBundleVersion 1 diff --git a/Tests/UnitTestsHostApp/Info.plist b/Tests/UnitTestsHostApp/Info.plist index df74fbd1e5..87c4dedb06 100644 --- a/Tests/UnitTestsHostApp/Info.plist +++ b/Tests/UnitTestsHostApp/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 4.14.0 + 4.13.3 CFBundleVersion 1 LSRequiresIPhoneOS diff --git a/scripts/docs/index.html b/scripts/docs/index.html index b409479798..85688cc172 100644 --- a/scripts/docs/index.html +++ b/scripts/docs/index.html @@ -2,7 +2,7 @@ - +