Skip to content

Commit

Permalink
Version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeiting committed Nov 7, 2017
1 parent fd191a9 commit c0fab8e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
4 changes: 2 additions & 2 deletions 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 = "0.3.0-SNAPSHOT"
s.version = "0.3.0"
s.summary = "Subscription and in-app-purchase backend service."

s.description = <<-DESC
Expand All @@ -9,7 +9,7 @@ Pod::Spec.new do |s|

s.homepage = "http://revenue.cat"
s.license = { :type => 'MIT' }
s.author = { "Revenue Cat, Inc." => "[email protected]" }
s.author = { "RevenueCat, Inc." => "[email protected]" }
s.source = { :git => "https://github.com/revenuecat/purchases-ios.git", :tag => s.version.to_s }

s.framework = 'StoreKit'
Expand Down
2 changes: 1 addition & 1 deletion Purchases/Classes/Public/RCPurchases.m
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Purchases/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.3.0-SNAPSHOT</string>
<string>0.3.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c0fab8e

Please sign in to comment.