From 7a0521f7da0dec54b14ed06a0275a5bf277163ab Mon Sep 17 00:00:00 2001 From: Jens Utbult Date: Wed, 23 Sep 2020 14:43:22 +0200 Subject: [PATCH] Preparing version 3.2.0 (#57) --- Changelog.md | 11 +++++++++++ README.md | 2 +- YubiKit.podspec | 6 +++--- .../YubiKitDemo/UI/About/AboutViewController.swift | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 6135e66d..2e44c511 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,16 @@ # YubiKit Changelog +#### 3.2.0 (3.1.0 -> 3.2.0) + +- Support for Swift Package Manager + +- Added support for renaming OATH credentials (supported by Yubikeys from version 5.3.1) + +- iPad Pro 4 and iPad Air with USB-C now correctly reports its capabilities in the SDK + +- Improved Base32 decoding +--- + #### 3.1.0 (3.0.0 -> 3.1.0) - Raw commands service `YKFKeyRawCommandService` now allows to specify timeouts on each command using `YKFKeyCommandConfiguration` in case if user wants to speed up communication with YubiKey or getting timeouts on execution of specific command. diff --git a/README.md b/README.md index d7d0ae02..c9b2ba72 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Add YubiKit to your [Podfile](https://guides.cocoapods.org/using/the-podfile.htm ```ruby use_frameworks! -pod 'YubiKit', '~> 3.1.0' +pod 'YubiKit', '~> 3.2.0' ``` If you want to have latest changes, replace the last line with: diff --git a/YubiKit.podspec b/YubiKit.podspec index d7906f93..9dc01150 100644 --- a/YubiKit.podspec +++ b/YubiKit.podspec @@ -1,14 +1,14 @@ Pod::Spec.new do |s| s.name = 'YubiKit' - s.version = '3.1.0' + s.version = '3.2.0' s.license = 'Apache 2.0' s.summary = 'YubiKit is an iOS library provided by Yubico to interact with YubiKeys on iOS devices.' s.homepage = 'https://github.com/Yubico/yubikit-ios' s.author = 'Yubico' s.source = { :git => 'https://github.com/Yubico/yubikit-ios.git', :tag => s.version } s.requires_arc = true - + s.source_files = 'YubiKit/YubiKit/**/*.{h,m}' - + s.ios.deployment_target = '10.0' end diff --git a/YubiKitDemo/YubiKitDemo/UI/About/AboutViewController.swift b/YubiKitDemo/YubiKitDemo/UI/About/AboutViewController.swift index 27c52af5..e9e4c621 100644 --- a/YubiKitDemo/YubiKitDemo/UI/About/AboutViewController.swift +++ b/YubiKitDemo/YubiKitDemo/UI/About/AboutViewController.swift @@ -28,7 +28,7 @@ class AboutViewController: UIViewController { let appBundle = Bundle(for: AboutViewController.self) - let libraryVersion = "3.1.0" + let libraryVersion = "3.2.0" let appVersion = appBundle.object(forInfoDictionaryKey: "CFBundleShortVersionString")! frameworkVersionLabel.text = "Library version: \(libraryVersion)"