Skip to content

Commit

Permalink
Version 3.0.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaro committed Oct 31, 2019
1 parent 4e4ab1a commit 9e74265
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Purchases.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Purchases/Public/RCPurchases.m
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ + (BOOL)debugLogsEnabled
}

+ (NSString *)frameworkVersion {
return @"3.0.0-beta.2";
return @"3.0.0-beta.3";
}

+ (instancetype)sharedPurchases {
Expand Down

0 comments on commit 9e74265

Please sign in to comment.