Browse Source

Documentation for running unit tests from Swift Package Manager

Evgenii Neumerzhitckii 6 years ago
parent
commit
e2b5207148
3 changed files with 12 additions and 5 deletions
  1. 7 1
      CHANGELOG.md
  2. 1 1
      KeychainSwift.podspec
  3. 4 3
      README.md

+ 7 - 1
CHANGELOG.md

@@ -1,5 +1,11 @@
 # KeychainSwift version history
 
+
+## 17.0.0 (2019-10-02)
+
+Added ability to run unit test from Swift Package Manager (https://github.com/evgenyneu/keychain-swift/pull/113).
+
+
 ## 16.0.0 (2019-05-28)
 
 Made all methods (get, set, delete and clear) thread-safe to prevent crashing when called from different threads.
@@ -90,4 +96,4 @@ Moved repository to https://github.com/marketplacer/keychain-swift
 
 ## 3.0.8 (2015-11-02)
 
-Added `lastResultCode` property.
+Added `lastResultCode` property.

+ 1 - 1
KeychainSwift.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name        = "KeychainSwift"
-  s.version     = "16.0.1"
+  s.version     = "17.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" ~> 16.0` to your Cartfile and run `carthage update`.
+Alternatively, add `github "evgenyneu/keychain-swift" ~> 17.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', '~> 16.0'
+    pod 'KeychainSwift', '~> 17.0'
 
 
 #### Setup with Swift Package Manager
@@ -58,7 +58,7 @@ import PackageDescription
 let package = Package(
     name: "MyApp",
     dependencies: [
-        .package(url: "https://github.com/evgenyneu/keychain-swift.git", from: "16.0.0")
+        .package(url: "https://github.com/evgenyneu/keychain-swift.git", from: "17.0.0")
     ],
     targets: [
         .target(
@@ -258,6 +258,7 @@ Here are some other Keychain libraries.
 * Thanks to [xuaninbox](https://github.com/xuaninbox) for fixing watchOS deployment target for Xcode 10.
 * Thanks to [schayes04](https://github.com/schayes04) for adding Swift 5.0 support.
 * Thanks to [mediym41](https://github.com/mediym41) for adding ability to return data as reference.
+* Thanks to [AnthonyOliveri](https://github.com/AnthonyOliveri) for adding ability to run unit tests from Swift Package Manager.