Browse Source

Remove privacy resource from podspec

Evgenii Neumerzhitckii 1 year ago
parent
commit
35fbafa467
3 changed files with 9 additions and 6 deletions
  1. 5 1
      CHANGELOG.md
  2. 1 2
      KeychainSwift.podspec
  3. 3 3
      README.md

+ 5 - 1
CHANGELOG.md

@@ -1,6 +1,10 @@
 # KeychainSwift version history
 
-## 22.0.0 (2024-05-05)
+## 23.0.0 (2024-05-26)
+
+Rever PR #188 (https://github.com/evgenyneu/keychain-swift/pull/188) since it introduced the issue when installing the library with CocoaPods (https://github.com/evgenyneu/keychain-swift/issues/185#issuecomment-2078297077).
+
+## 22.0.0 (2024-04-05)
 
 Added privacy manifest as a resource to CocoaPods Podspec file (https://github.com/evgenyneu/keychain-swift/pull/188).
 

+ 1 - 2
KeychainSwift.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name        = "KeychainSwift"
-  s.version     = "22.0.0"
+  s.version     = "23.0.0"
   s.license     = { :type => "MIT" }
   s.homepage    = "https://github.com/evgenyneu/keychain-swift"
   s.summary     = "A library for saving text and data in the Keychain with Swift."
@@ -15,7 +15,6 @@ Pod::Spec.new do |s|
   s.source      = { :git => "https://github.com/evgenyneu/keychain-swift.git", :tag => s.version }
   s.screenshots  = "https://raw.githubusercontent.com/evgenyneu/keychain-swift/master/graphics/keychain-swift-demo-3.png"
   s.source_files = "Sources/*.swift"
-  s.resource = 'Sources/PrivacyInfo.xcprivacy'
   s.ios.deployment_target = "12.0"
   s.osx.deployment_target = "10.13"
   s.watchos.deployment_target = "4.0"

+ 3 - 3
README.md

@@ -37,7 +37,7 @@ Simply add [KeychainSwiftDistrib.swift](https://github.com/evgenyneu/keychain-sw
 
 #### Setup with Carthage (iOS 8+)
 
-Alternatively, add `github "evgenyneu/keychain-swift" ~> 22.0` to your Cartfile and run `carthage update`.
+Alternatively, add `github "evgenyneu/keychain-swift" ~> 23.0` to your Cartfile and run `carthage update`.
 
 #### Setup with CocoaPods (iOS 8+)
 
@@ -46,7 +46,7 @@ If you are using CocoaPods add this text to your Podfile and run `pod install`.
 ```
 use_frameworks!
 target 'Your target name'
-pod 'KeychainSwift', '~> 22.0'
+pod 'KeychainSwift', '~> 23.0'
 ```
 
 
@@ -60,7 +60,7 @@ pod 'KeychainSwift', '~> 22.0'
 If you're using KeychainSwift in a Swift package, make sure to specify a `name`. This is because SPM cannot automatically resolve a name for a package that has a different Target name in its `Package.swift` (namely `KeychainSwift`) that differs from the repo link (`keychain-swift`).
 
 ```
-.package(name: "KeychainSwift", url: "https://github.com/evgenyneu/keychain-swift.git", from: "22.0.0")
+.package(name: "KeychainSwift", url: "https://github.com/evgenyneu/keychain-swift.git", from: "23.0.0")
 ```
 
 ## Legacy Swift versions