diff --git a/.jazzy.yaml b/.jazzy.yaml index af89192658..a73f1c97f4 100644 --- a/.jazzy.yaml +++ b/.jazzy.yaml @@ -5,9 +5,9 @@ objc: true sdk: iphonesimulator module: Purchases umbrella_header: Purchases/Public/Purchases.h -module_version: 3.13.0-SNAPSHOT +module_version: 3.12.2 github_url: https://github.com/revenuecat/purchases-ios -github_file_prefix: https://github.com/revenuecat/purchases-ios/tree/3.13.0-SNAPSHOT +github_file_prefix: https://github.com/revenuecat/purchases-ios/tree/3.12.2 output: docs # Leaving this commented out. We used to specify this before, but now it's working without it # xcodebuild_arguments: [--objc,Purchases/Public/Purchases.h,--,-x,objective-c,-isysroot,$(xcrun --show-sdk-path),-I,$(pwd)] diff --git a/.version b/.version index 2336b05c7d..2b3ed50222 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -3.13.0-SNAPSHOT \ No newline at end of file +3.12.2 \ No newline at end of file diff --git a/CHANGELOG.latest.md b/CHANGELOG.latest.md index 76dd471816..ced93b04fe 100644 --- a/CHANGELOG.latest.md +++ b/CHANGELOG.latest.md @@ -1,2 +1,2 @@ -- Fixed an issue in some versions of Xcode where compiling would fail with `Definition conflicts with previous value` in `ETagManager.swift` - https://github.com/revenuecat/purchases-ios/pull/659 +- Fixed a bug where calling setDebugLogsEnabled(false) enables debug logs when it should not. + https://github.com/RevenueCat/purchases-ios/pull/663 diff --git a/CHANGELOG.md b/CHANGELOG.md index b1e79752b2..df8843c9a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.12.2 +- Fixed a bug where calling setDebugLogsEnabled(false) enables debug logs when it should not. + https://github.com/RevenueCat/purchases-ios/pull/663 + ## 3.12.1 - Fixed an issue in some versions of Xcode where compiling would fail with `Definition conflicts with previous value` in `ETagManager.swift` https://github.com/revenuecat/purchases-ios/pull/659 diff --git a/Purchases.podspec b/Purchases.podspec index 5f907c950c..8290beead4 100644 --- a/Purchases.podspec +++ b/Purchases.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Purchases" - s.version = "3.13.0-SNAPSHOT" + s.version = "3.12.2" s.summary = "Subscription and in-app-purchase backend service." s.description = <<-DESC @@ -22,7 +22,7 @@ Pod::Spec.new do |s| s.tvos.deployment_target = '9.0' s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } - s.dependency 'PurchasesCoreSwift', '3.13.0-SNAPSHOT' + s.dependency 'PurchasesCoreSwift', '3.12.2' s.source_files = ['Purchases/**/*.{h,m}'] diff --git a/Purchases/Info.plist b/Purchases/Info.plist index c9a5d84afa..ee2519e08d 100644 --- a/Purchases/Info.plist +++ b/Purchases/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 3.13.0 + 3.12.2 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/Purchases/Misc/RCSystemInfo.m b/Purchases/Misc/RCSystemInfo.m index 87ac7ba66b..ddcc0f13f8 100644 --- a/Purchases/Misc/RCSystemInfo.m +++ b/Purchases/Misc/RCSystemInfo.m @@ -49,7 +49,7 @@ + (BOOL)isSandbox { } + (NSString *)frameworkVersion { - return @"3.13.0-SNAPSHOT"; + return @"3.12.2"; } + (NSString *)systemVersion { diff --git a/PurchasesCoreSwift.podspec b/PurchasesCoreSwift.podspec index a7a542a658..d7e04c0895 100644 --- a/PurchasesCoreSwift.podspec +++ b/PurchasesCoreSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "PurchasesCoreSwift" - s.version = "3.13.0-SNAPSHOT" + s.version = "3.12.2" s.summary = "Swift portion of RevenueCat's Subscription and in-app-purchase backend service." s.description = <<-DESC diff --git a/PurchasesCoreSwift/Info.plist b/PurchasesCoreSwift/Info.plist index 40796ed49b..3e458dc40b 100644 --- a/PurchasesCoreSwift/Info.plist +++ b/PurchasesCoreSwift/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 3.13.0 + 3.12.2 CFBundleVersion $(CURRENT_PROJECT_VERSION) diff --git a/PurchasesCoreSwiftTests/Info.plist b/PurchasesCoreSwiftTests/Info.plist index 0fb2a3db97..b47307daef 100644 --- a/PurchasesCoreSwiftTests/Info.plist +++ b/PurchasesCoreSwiftTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 3.13.0 + 3.12.2 CFBundleVersion 1 diff --git a/PurchasesTests/Info.plist b/PurchasesTests/Info.plist index 84dcc1d73a..542e3bfbc5 100644 --- a/PurchasesTests/Info.plist +++ b/PurchasesTests/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 3.13.0 + 3.12.2 CFBundleVersion 1 diff --git a/StoreKitTestApp/Info.plist b/StoreKitTestApp/Info.plist index 45f212287d..1a7ccc5075 100644 --- a/StoreKitTestApp/Info.plist +++ b/StoreKitTestApp/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 3.13.0 + 3.12.2 CFBundleVersion 1 LSRequiresIPhoneOS diff --git a/StoreKitTests/Info.plist b/StoreKitTests/Info.plist index 0fb2a3db97..b47307daef 100644 --- a/StoreKitTests/Info.plist +++ b/StoreKitTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 3.13.0 + 3.12.2 CFBundleVersion 1