diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b4713ad7d..ff14bdd562 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Purchases.podspec b/Purchases.podspec index 7a7897a6ae..aa982ef98d 100644 --- a/Purchases.podspec +++ b/Purchases.podspec @@ -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 diff --git a/Purchases/Info.plist b/Purchases/Info.plist index fdfd874330..18326bf78b 100644 --- a/Purchases/Info.plist +++ b/Purchases/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.7.0-SNAPSHOT + 2.6.1 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/Purchases/Public/RCPurchases.m b/Purchases/Public/RCPurchases.m index 3e89a862ec..d4a9e88b80 100644 --- a/Purchases/Public/RCPurchases.m +++ b/Purchases/Public/RCPurchases.m @@ -91,7 +91,7 @@ + (BOOL)debugLogsEnabled } + (NSString *)frameworkVersion { - return @"2.7.0-SNAPSHOT"; + return @"2.6.1"; } + (instancetype)sharedPurchases {