diff --git a/CHANGELOG.md b/CHANGELOG.md index df97dcea2a..fee98e1941 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 3.0.0-beta.3 + +- Enabled base internationalisation to silence a warning (#119) +- Migrates tests to Swift 5 (#138) +- New identity changes (#133): + - The `.createAlias()` method is no longer required, use .identify() instead + - `.identify()` will create an alias if being called from an anonymous ID generated by RevenueCat + - Added an `isAnonymous` property to `Purchases.shared` + - Improved offline use + ## 3.0.0-beta.2 - Fixes crash when there is a transaction in the queue that refers to a removed product https://github.com/RevenueCat/purchases-ios/issues/135 diff --git a/Purchases.podspec b/Purchases.podspec index ca89b9033f..490ac8aa6c 100644 --- a/Purchases.podspec +++ b/Purchases.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Purchases" - s.version = "3.0.0-beta.2" + s.version = "3.0.0-beta.3" s.summary = "Subscription and in-app-purchase backend service." s.description = <<-DESC diff --git a/Purchases/Public/RCPurchases.m b/Purchases/Public/RCPurchases.m index d193032727..a753c2b473 100644 --- a/Purchases/Public/RCPurchases.m +++ b/Purchases/Public/RCPurchases.m @@ -97,7 +97,7 @@ + (BOOL)debugLogsEnabled } + (NSString *)frameworkVersion { - return @"3.0.0-beta.2"; + return @"3.0.0-beta.3"; } + (instancetype)sharedPurchases {