Procházet zdrojové kódy

Remove deprecated access options

Evgenii Neumerzhitckii před 6 roky
rodič
revize
d9b76fba09
3 změnil soubory, kde provedl 8 přidání a 3 odebrání
  1. 5 0
      CHANGELOG.md
  2. 1 1
      KeychainSwift.podspec
  3. 2 2
      README.md

+ 5 - 0
CHANGELOG.md

@@ -1,6 +1,11 @@
 # KeychainSwift version history
 
 
+## 18.0.0 (2019-11-03)
+
+Removed deprecated `kSecAttrAccessibleAlways` and `kSecAttrAccessibleAlwaysThisDeviceOnly` access options (https://github.com/evgenyneu/keychain-swift/pull/122).
+
+
 ## 17.0.0 (2019-10-02)
 
 Added ability to run unit test from Swift Package Manager (https://github.com/evgenyneu/keychain-swift/pull/113).

+ 1 - 1
KeychainSwift.podspec

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

+ 2 - 2
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" ~> 17.0` to your Cartfile and run `carthage update`.
+Alternatively, add `github "evgenyneu/keychain-swift" ~> 18.0` to your Cartfile and run `carthage update`.
 
 #### Setup with CocoaPods (iOS 8+)
 
@@ -45,7 +45,7 @@ If you are using CocoaPods add this text to your Podfile and run `pod install`.
 
     use_frameworks!
     target 'Your target name'
-    pod 'KeychainSwift', '~> 17.0'
+    pod 'KeychainSwift', '~> 18.0'
 
 
 #### Setup with Swift Package Manager