Skip to content

Commit 7a0521f

Browse files
authored
Preparing version 3.2.0 (#57)
1 parent 8bf16a4 commit 7a0521f

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

Changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# YubiKit Changelog
22

3+
#### 3.2.0 (3.1.0 -> 3.2.0)
4+
5+
- Support for Swift Package Manager
6+
7+
- Added support for renaming OATH credentials (supported by Yubikeys from version 5.3.1)
8+
9+
- iPad Pro 4 and iPad Air with USB-C now correctly reports its capabilities in the SDK
10+
11+
- Improved Base32 decoding
12+
---
13+
314
#### 3.1.0 (3.0.0 -> 3.1.0)
415

516
- 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.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Add YubiKit to your [Podfile](https://guides.cocoapods.org/using/the-podfile.htm
4545
```ruby
4646
use_frameworks!
4747

48-
pod 'YubiKit', '~> 3.1.0'
48+
pod 'YubiKit', '~> 3.2.0'
4949

5050
```
5151
If you want to have latest changes, replace the last line with:

YubiKit.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Pod::Spec.new do |s|
22
s.name = 'YubiKit'
3-
s.version = '3.1.0'
3+
s.version = '3.2.0'
44
s.license = 'Apache 2.0'
55
s.summary = 'YubiKit is an iOS library provided by Yubico to interact with YubiKeys on iOS devices.'
66
s.homepage = 'https://github.com/Yubico/yubikit-ios'
77
s.author = 'Yubico'
88
s.source = { :git => 'https://github.com/Yubico/yubikit-ios.git', :tag => s.version }
99
s.requires_arc = true
10-
10+
1111
s.source_files = 'YubiKit/YubiKit/**/*.{h,m}'
12-
12+
1313
s.ios.deployment_target = '10.0'
1414
end

YubiKitDemo/YubiKitDemo/UI/About/AboutViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class AboutViewController: UIViewController {
2828

2929
let appBundle = Bundle(for: AboutViewController.self)
3030

31-
let libraryVersion = "3.1.0"
31+
let libraryVersion = "3.2.0"
3232
let appVersion = appBundle.object(forInfoDictionaryKey: "CFBundleShortVersionString")!
3333

3434
frameworkVersionLabel.text = "Library version: \(libraryVersion)"

0 commit comments

Comments
 (0)