diff --git a/CHANGELOG.md b/CHANGELOG.md index ef6e9a0..a8f2946 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,23 @@ # Change Log All notable changes to this project will be documented in this file. -## 0.1.0 - TBD +## master + +## 0.2.2 - 2014-12-10 +### Changed +- Fix static analysis issues (@nsarno). +- Issue when checking if keychain query is built successfully. + +## 0.2.1 - 2014-12-04 +### Changed +- Fixed issue updating entry with TouchID (@Yspadadden) +- Fixed issue when checking if an entry exists (@Yspadadden) + +## 0.2.0 - 2014-10-31 +### Added +- Methods to handle RSA key pair in the Kechain + +## 0.1.0 - 2014-10-20 ### Added - Store, Update and Remove password entries in Keychain - Handle Keychain entries with Access Group to allow Keychain Sharing diff --git a/Example/Podfile.lock b/Example/Podfile.lock index d143ce4..8a8a595 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,6 +1,6 @@ PODS: - Expecta (0.3.1) - - SimpleKeychain (0.2.1) + - SimpleKeychain (0.2.2) - Specta (0.2.1) DEPENDENCIES: @@ -14,7 +14,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Expecta: 03aabd0a89d8dea843baecb19a7fd7466a69a31d - SimpleKeychain: ea07dc3e4af0c9b92ac9d30cf362a850e1131d8e + SimpleKeychain: 148e0151e6721ce94b8da5aec90bf4d315ec7db7 Specta: 9141310f46b1f68b676650ff2854e1ed0b74163a COCOAPODS: 0.35.0 diff --git a/SimpleKeychain.podspec b/SimpleKeychain.podspec index 2bf8576..d66513d 100644 --- a/SimpleKeychain.podspec +++ b/SimpleKeychain.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SimpleKeychain" - s.version = "0.2.1" + s.version = "0.2.2" s.summary = "A wrapper to make it really easy to deal with iOS Keychain and store your user's credentials securely." s.description = <<-DESC A simple way to store items in iOS Keychain, without the hassle of dealing with iOS Keychain API directly.