Bladeren bron

Added Swift 3.1 support

Evgenii Neumerzhitckii 8 jaren geleden
bovenliggende
commit
d92a6fa1e8
3 gewijzigde bestanden met toevoegingen van 10 en 4 verwijderingen
  1. 5 0
      CHANGELOG.md
  2. 1 1
      KeychainSwift.podspec
  3. 4 3
      README.md

+ 5 - 0
CHANGELOG.md

@@ -1,5 +1,10 @@
 # KeychainSwift version history
 
+## 8.0.0 (2017-04-08)
+
+Added Swif 3.1 support ([CraigSiemens](https://github.com/CraigSiemens)).
+
+
 ## 7.0.0 (2016-10-08)
 
 Swift package manager support ([diogoguimaraes](https://github.com/diogoguimaraes)).

+ 1 - 1
KeychainSwift.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name        = "KeychainSwift"
-  s.version     = "7.0.0"
+  s.version     = "8.0.0"
   s.license     = { :type => "MIT" }
   s.homepage    = "https://github.com/marketplacer/keychain-swift"
   s.summary     = "A library for saving text and data in the Keychain with Swift."

+ 4 - 3
README.md

@@ -40,7 +40,7 @@ Simply add [KeychainSwiftDistrib.swift](https://github.com/marketplacer/keychain
 
 #### Setup with Carthage (iOS 8+)
 
-Alternatively, add `github "marketplacer/keychain-swift" ~> 7.0` to your Cartfile and run `carthage update`.
+Alternatively, add `github "marketplacer/keychain-swift" ~> 8.0` to your Cartfile and run `carthage update`.
 
 #### Setup with CocoaPods (iOS 8+)
 
@@ -48,7 +48,7 @@ If you are using CocoaPods add this text to your Podfile and run `pod install`.
 
     use_frameworks!
     target 'Your target name'
-    pod 'KeychainSwift', '~> 7.0'
+    pod 'KeychainSwift', '~> 8.0'
 
 
 #### Setup with Swift Package Manager
@@ -62,7 +62,7 @@ let package = Package(
     name: "KeychainSwift",
     dependencies: [
         .Package(url: "https://github.com/marketplacer/keychain-swift.git",
-                 versions: Version(7,0,0)..<Version(8,0,0))
+                 versions: Version(8,0,0)..<Version(9,0,0))
     ]
 )
 ```
@@ -248,6 +248,7 @@ Here are some other Keychain libraries.
 * Thanks to [mikaoj](https://github.com/mikaoj) for adding keychain synchronization.
 * Thanks to [tcirwin](https://github.com/tcirwin) for adding Swift 3.0 support.
 * Thanks to [Tulleb](https://github.com/Tulleb) for adding Xcode 8 beta 6 support.
+* Thanks to [CraigSiemens](https://github.com/CraigSiemens) for adding Swift 3.1 support.
 
 
 ## Submitting a pull request