浏览代码

Add Swift 4.2 support

Evgenii Neumerzhitckii 7 年之前
父节点
当前提交
4c9280553d
共有 4 个文件被更改,包括 13 次插入5 次删除
  1. 6 0
      CHANGELOG.md
  2. 1 1
      KeychainSwift.podspec
  3. 1 1
      LICENSE
  4. 5 3
      README.md

+ 6 - 0
CHANGELOG.md

@@ -1,9 +1,15 @@
 # KeychainSwift version history
 
+## 12.0.0 (2018-09-19)
+
+Update to Swift 4.2 ([beny](https://github.com/beny)).
+
+
 ## 11.0.0 (2018-03-31)
 
 Added Swift language version to the podspec file for CocoaPods.
 
+
 ## 10.0.0 (2017-10-30)
 
 Fixed a crash in `getData` when called simultaneously from different threads ([details](https://github.com/evgenyneu/keychain-swift/pull/68)).

+ 1 - 1
KeychainSwift.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name        = "KeychainSwift"
-  s.version     = "11.0.0"
+  s.version     = "12.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 Marketplacer
+Copyright (c) 2015 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

+ 5 - 3
README.md

@@ -36,7 +36,7 @@ Simply add [KeychainSwiftDistrib.swift](https://github.com/evgenyneu/keychain-sw
 
 #### Setup with Carthage (iOS 8+)
 
-Alternatively, add `github "evgenyneu/keychain-swift" ~> 11.0` to your Cartfile and run `carthage update`.
+Alternatively, add `github "evgenyneu/keychain-swift" ~> 12.0` to your Cartfile and run `carthage update`.
 
 #### Setup with CocoaPods (iOS 8+)
 
@@ -44,7 +44,7 @@ If you are using CocoaPods add this text to your Podfile and run `pod install`.
 
     use_frameworks!
     target 'Your target name'
-    pod 'KeychainSwift', '~> 11.0'
+    pod 'KeychainSwift', '~> 12.0'
 
 
 #### Setup with Swift Package Manager
@@ -57,7 +57,7 @@ import PackageDescription
 let package = Package(
     name: "MyApp",
     dependencies: [
-        .package(url: "https://github.com/evgenyneu/keychain-swift.git", from: "11.0.0"),
+        .package(url: "https://github.com/evgenyneu/keychain-swift.git", from: "12.0.0"),
     ],
     targets: [
         on.
@@ -238,6 +238,8 @@ Here are some other Keychain libraries.
 * Thanks to [CraigSiemens](https://github.com/CraigSiemens) for adding Swift 3.1 support.
 * Thanks to [maxkramerbcgdv](https://github.com/maxkramerbcgdv) for fixing Package Manager setup in Xcode 8.2.
 * Thanks to [elikohen](https://github.com/elikohen) for fixing concurrency issues.
+* Thanks to [beny](https://github.com/beny) for adding Swift 4.2 support.
+
 
 
 ## Feedback is welcome