Evgenii Neumerzhitckii 7 năm trước cách đây
mục cha
commit
50769a824d
3 tập tin đã thay đổi với 11 bổ sung4 xóa
  1. 6 0
      CHANGELOG.md
  2. 1 1
      KeychainSwift.podspec
  3. 4 3
      README.md

+ 6 - 0
CHANGELOG.md

@@ -1,5 +1,11 @@
 # KeychainSwift version history
 
+
+## 13.0.0 (2018-10-23)
+
+Increased watchOS deployment target to 3.0 ([xuaninbox](https://github.com/xuaninbox)).
+
+
 ## 12.0.0 (2018-09-19)
 
 Update to Swift 4.2 ([beny](https://github.com/beny)).

+ 1 - 1
KeychainSwift.podspec

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

+ 4 - 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" ~> 12.0` to your Cartfile and run `carthage update`.
+Alternatively, add `github "evgenyneu/keychain-swift" ~> 13.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', '~> 12.0'
+    pod 'KeychainSwift', '~> 13.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: "12.0.0"),
+        .package(url: "https://github.com/evgenyneu/keychain-swift.git", from: "13.0.0"),
     ],
     targets: [
         on.
@@ -239,6 +239,7 @@ Here are some other Keychain libraries.
 * 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.
+* Thanks to [xuaninbox](https://github.com/xuaninbox) for fixing watchOS deployment target for Xcode 10.