Skip to content
This repository was archived by the owner on Dec 22, 2020. It is now read-only.

v0.17.1 #125

Merged
merged 1 commit into from
Sep 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [0.17.1] (2018-09-19)

[0.17.1]: https://github.com/tendermint/yubihsm-rs/pull/125

* [#124](https://github.com/tendermint/yubihsm-rs/pull/124)
UsbDevices: add `len()`, `is_empty()`, `as_slice()`, and `into_iter()`.

* [#123](https://github.com/tendermint/yubihsm-rs/pull/123)
adapter/usb: Don't verbosely log every discovered YubiHSM2.

## [0.17.0] (2018-09-19)

[0.17.0]: https://github.com/tendermint/yubihsm-rs/pull/122
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "yubihsm"
description = "Pure Rust client for YubiHSM2 devices"
version = "0.17.0" # Also update html_root_url in lib.rs when bumping this
version = "0.17.1" # Also update html_root_url in lib.rs when bumping this
license = "MIT OR Apache-2.0"
authors = ["Tony Arcieri <[email protected]>"]
documentation = "https://docs.rs/yubihsm"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
#![deny(unsafe_code, unused_import_braces, unused_qualifications)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tendermint/yubihsm-rs/master/img/logo.png",
html_root_url = "https://docs.rs/yubihsm/0.17.0"
html_root_url = "https://docs.rs/yubihsm/0.17.1"
)]

extern crate aes;
Expand Down