Ver código fonte

Bump version

Evgenii Neumerzhitckii 1 ano atrás
pai
commit
265806607b
4 arquivos alterados com 14 adições e 8 exclusões
  1. 4 0
      CHANGELOG.md
  2. 1 1
      KeychainSwift.podspec
  3. 1 1
      LICENSE
  4. 8 6
      README.md

+ 4 - 0
CHANGELOG.md

@@ -1,5 +1,9 @@
 # KeychainSwift version history
 
+## 21.0.0 (2024-01-20)
+
+Added privacy manifest (Sources/PrivacyInfo.xcprivacy).
+
 ## 20.0.0 (2021-01-04)
 
 Update to Xcode 13.

+ 1 - 1
KeychainSwift.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name        = "KeychainSwift"
-  s.version     = "20.0.0"
+  s.version     = "21.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."

+ 1 - 1
LICENSE

@@ -1,6 +1,6 @@
 The MIT License
 
-Copyright (c) 2015 - 2021 Evgenii Neumerzhitckii
+Copyright (c) 2015 - 2024 Evgenii Neumerzhitckii
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal

+ 8 - 6
README.md

@@ -37,15 +37,17 @@ Simply add [KeychainSwiftDistrib.swift](https://github.com/evgenyneu/keychain-sw
 
 #### Setup with Carthage (iOS 8+)
 
-Alternatively, add `github "evgenyneu/keychain-swift" ~> 20.0` to your Cartfile and run `carthage update`.
+Alternatively, add `github "evgenyneu/keychain-swift" ~> 21.0` to your Cartfile and run `carthage update`.
 
 #### Setup with CocoaPods (iOS 8+)
 
 If you are using CocoaPods add this text to your Podfile and run `pod install`.
 
-    use_frameworks!
-    target 'Your target name'
-    pod 'KeychainSwift', '~> 20.0'
+```
+use_frameworks!
+target 'Your target name'
+pod 'KeychainSwift', '~> 21.0'
+```
 
 
 #### Setup with Swift Package Manager (in project)
@@ -55,10 +57,10 @@ If you are using CocoaPods add this text to your Podfile and run `pod install`.
 
 #### Setup with Swift Package Manager (in Swift Package)
 
-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`)
+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: "20.0.0")
+.package(name: "KeychainSwift", url: "https://github.com/evgenyneu/keychain-swift.git", from: "21.0.0")
 ```
 
 ## Legacy Swift versions