From c0fab8e801b4f82d894ed406e755445cb25c6e1f Mon Sep 17 00:00:00 2001 From: Jacob Eiting Date: Tue, 7 Nov 2017 14:01:56 -0800 Subject: [PATCH] Version 0.3.0 --- CHANGELOG.md | 5 +++++ Purchases.podspec | 4 ++-- Purchases/Classes/Public/RCPurchases.m | 2 +- Purchases/Info.plist | 2 +- README.md | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 566c44f708..1f63af17f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.3.0 +- Improve handling of Apple and Backend errors +- Handles missing receipts case +- Fixed issue with timezone parsing + ## 0.2.0 - Rename shared secret to API key - Remove `purchaserInfoWithCompletion`, now `RCPurchases` fetches updated purchaser info automatically on `UIApplicationDidBecomeActive`. diff --git a/Purchases.podspec b/Purchases.podspec index 5f50c44e90..176f4c7378 100644 --- a/Purchases.podspec +++ b/Purchases.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Purchases" - s.version = "0.3.0-SNAPSHOT" + s.version = "0.3.0" s.summary = "Subscription and in-app-purchase backend service." s.description = <<-DESC @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.homepage = "http://revenue.cat" s.license = { :type => 'MIT' } - s.author = { "Revenue Cat, Inc." => "jacob@revenuecat.com" } + s.author = { "RevenueCat, Inc." => "jacob@revenuecat.com" } s.source = { :git => "https://github.com/revenuecat/purchases-ios.git", :tag => s.version.to_s } s.framework = 'StoreKit' diff --git a/Purchases/Classes/Public/RCPurchases.m b/Purchases/Classes/Public/RCPurchases.m index 99a3630d3e..b01b1709ec 100644 --- a/Purchases/Classes/Public/RCPurchases.m +++ b/Purchases/Classes/Public/RCPurchases.m @@ -42,7 +42,7 @@ - (instancetype _Nullable)initWithAPIKey:(NSString *)APIKey appUserID:(NSString notificationCenter:[NSNotificationCenter defaultCenter]]; } + (NSString *)frameworkVersion { - return @"0.3.0-SNAPSHOT"; + return @"0.3.0"; } - (instancetype _Nullable)initWithAppUserID:(NSString *)appUserID diff --git a/Purchases/Info.plist b/Purchases/Info.plist index 2e5af3093c..dccb7a25f6 100644 --- a/Purchases/Info.plist +++ b/Purchases/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.3.0-SNAPSHOT + 0.3.0 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/README.md b/README.md index 1d1ade16b0..3a78f91d3a 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Purchases is a client for the [RevenueCat](https://www.revenuecat.com/) subscrip ### CocoaPods ``` -pod "Purchases", "0.2.0" +pod "Purchases" ``` ### Carthage