From 7c8315454d21d33de00e7ca3c33e5ecff2d78362 Mon Sep 17 00:00:00 2001 From: Samuel Spencer Date: Sun, 19 Jul 2020 12:46:31 -0400 Subject: [PATCH 1/4] Update README.md --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index c9723e45..8a5cef0c 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ [![Build](https://img.shields.io/travis/bizz84/SwiftyStoreKit.svg?style=flat)](https://travis-ci.org/bizz84/SwiftyStoreKit) [![Issues](https://img.shields.io/github/issues/bizz84/SwiftyStoreKit.svg?style=flat)](https://github.com/bizz84/SwiftyStoreKit/issues) [![Slack](https://img.shields.io/badge/Slack-Join-green.svg?style=flat)](https://join.slack.com/t/swiftystorekit/shared_invite/enQtODY3OTYxOTExMzE5LWVkNGY4MzcwY2VjNGM4MGU4NDFhMGE5YmUxMGM3ZTQ4NjVjNTRkNTJhNDAyMWZmY2M5OWE5MDE0ODc3OGJjMmM) -[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) -[![Swift Package Manager compatible](https://img.shields.io/badge/SPM-compatible-orange.svg?style=flat)](https://swift.org/package-manager/) SwiftyStoreKit is a lightweight In App Purchases framework for iOS, tvOS, watchOS, macOS, and Mac Catalyst. @@ -106,10 +104,6 @@ github "bizz84/SwiftyStoreKit" **NOTE**: Please ensure that you have the [latest](https://github.com/Carthage/Carthage/releases) Carthage installed. ### CocoaPods -**:rotating_light: NOT RECOMMENDED**. Current project maintainers do *not* have push access to the CocoaPod trunk and we are waiting for confirmation from the original repo author / owner. **The CocoaPod pod is already 2 releases behind the current version.** - -**:warning: There is no guarantee of future updates via CocoaPods. Installing with CocoaPods is done at your own risk. :warning:** - SwiftyStoreKit can be installed as a [CocoaPod](https://cocoapods.org/) and builds as a Swift framework. To install, include this in your Podfile. ```ruby From 48cbff8bfb44af83c11a9b08e22bb30410bad4cc Mon Sep 17 00:00:00 2001 From: Samuel Spencer Date: Sun, 19 Jul 2020 12:53:33 -0400 Subject: [PATCH 2/4] Update SwiftyStoreKit.podspec --- SwiftyStoreKit.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SwiftyStoreKit.podspec b/SwiftyStoreKit.podspec index 9e0ec6ac..3e56e9e2 100644 --- a/SwiftyStoreKit.podspec +++ b/SwiftyStoreKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftyStoreKit' - s.version = '0.16.0' + s.version = '0.16.1' s.summary = 'Lightweight In App Purchases Swift framework for iOS, tvOS, watchOS, macOS and Mac Catalyst.' s.license = 'MIT' s.homepage = 'https://github.com/bizz84/SwiftyStoreKit' From e518abea746857ea2b3348ade9e9143d88d7e431 Mon Sep 17 00:00:00 2001 From: Sam Spencer Date: Sun, 19 Jul 2020 12:58:30 -0400 Subject: [PATCH 3/4] Update SwiftyStoreKit.podspec --- SwiftyStoreKit.podspec | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/SwiftyStoreKit.podspec b/SwiftyStoreKit.podspec index 3e56e9e2..4fac70f9 100644 --- a/SwiftyStoreKit.podspec +++ b/SwiftyStoreKit.podspec @@ -11,10 +11,7 @@ Pod::Spec.new do |s| s.watchos.deployment_target = '6.2' s.swift_version = '5.0' s.source = { :git => "https://github.com/bizz84/SwiftyStoreKit.git", :tag => s.version } - - s.source_files = 'SwiftyStoreKit/*.{swift}' - + s.source_files = 'Sources/SwiftyStoreKit/*.{swift}' s.screenshots = ["https://github.com/bizz84/SwiftyStoreKit/raw/master/Screenshots/Preview.jpg"] - s.requires_arc = true end From 38d34dad275cc90706f4daaadf401579b33737ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B5=D0=BD=D0=B8=D1=81=20=D0=90=D0=BD=D0=B4=D1=80?= =?UTF-8?q?=D0=B5=D0=B8=CC=86=D1=87=D1=83=D0=BA?= Date: Wed, 22 Jul 2020 16:13:19 +0300 Subject: [PATCH 4/4] Make `SubscriptionType` Hashable. --- Sources/SwiftyStoreKit/SwiftyStoreKit+Types.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SwiftyStoreKit/SwiftyStoreKit+Types.swift b/Sources/SwiftyStoreKit/SwiftyStoreKit+Types.swift index 8eea5c9b..addf9b78 100644 --- a/Sources/SwiftyStoreKit/SwiftyStoreKit+Types.swift +++ b/Sources/SwiftyStoreKit/SwiftyStoreKit+Types.swift @@ -175,7 +175,7 @@ public enum VerifySubscriptionResult { case notPurchased } -public enum SubscriptionType { +public enum SubscriptionType: Hashable { case autoRenewable case nonRenewing(validDuration: TimeInterval) }