Skip to content

Commit

Permalink
Version 2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaro committed Nov 5, 2019
1 parent 984e5c9 commit 9633215
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.6.1
- Support for Swift Package Manager
- Adds a conditional to protect against nil products or productIdentifier (https://github.com/RevenueCat/purchases-ios/pull/129)

## 2.6.0
- Deprecates `activeEntitlements` in `RCPurchaserInfo` and adds `entitlements` object to `RCPurchaserInfo`. For more info look into https://docs.revenuecat.com/docs/purchaserinfo

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 = "2.7.0-SNAPSHOT"
s.version = "2.6.1"
s.summary = "Subscription and in-app-purchase backend service."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Purchases/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.7.0-SNAPSHOT</string>
<string>2.6.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion Purchases/Public/RCPurchases.m
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ + (BOOL)debugLogsEnabled
}

+ (NSString *)frameworkVersion {
return @"2.7.0-SNAPSHOT";
return @"2.6.1";
}

+ (instancetype)sharedPurchases {
Expand Down

0 comments on commit 9633215

Please sign in to comment.