Skip to content

Commit

Permalink
Preparing version 3.2.0 (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
jensutbult authored Sep 23, 2020
1 parent 8bf16a4 commit 7a0521f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions YubiKit.podspec
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion YubiKitDemo/YubiKitDemo/UI/About/AboutViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down

0 comments on commit 7a0521f

Please sign in to comment.