Parcourir la source

Added Swift version to the podspec file

Evgenii Neumerzhitckii il y a 7 ans
Parent
commit
b5e83a2b89
3 fichiers modifiés avec 7 ajouts et 4 suppressions
  1. 3 0
      CHANGELOG.md
  2. 1 1
      KeychainSwift.podspec
  3. 3 3
      README.md

+ 3 - 0
CHANGELOG.md

@@ -1,5 +1,8 @@
 # KeychainSwift version history
 
+## 11.0.0 (2018-03-31)
+
+Added Swift language version to the podspec file for CocoaPods.
 
 ## 10.0.0 (2017-10-30)
 

+ 1 - 1
KeychainSwift.podspec

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

+ 3 - 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" ~> 10.0` to your Cartfile and run `carthage update`.
+Alternatively, add `github "evgenyneu/keychain-swift" ~> 11.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', '~> 10.0'
+    pod 'KeychainSwift', '~> 11.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: "10.0.0"),
+        .package(url: "https://github.com/evgenyneu/keychain-swift.git", from: "11.0.0"),
     ],
     targets: [
         on.