diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2020-07-14 21:52:06 +0200 |
---|---|---|
committer | Robin Krahl <robin.krahl@ireas.org> | 2020-07-14 21:53:02 +0200 |
commit | 8f72f038cab8e61fb162c12c4bd4cbaa243faa2d (patch) | |
tree | 0974cefb5662b5bf37b1d27c17ce73e07a126dc1 | |
parent | d0f517eec5fbeb402a42eb2b23ca13fc85f1bc98 (diff) | |
download | nitrokey-rs-8f72f038cab8e61fb162c12c4bd4cbaa243faa2d.tar.gz nitrokey-rs-8f72f038cab8e61fb162c12c4bd4cbaa243faa2d.tar.bz2 |
Release v0.7.0v0.7.0
This release changes the Error enum to implement Send, Sync and 'static
for compatibility with error handling crates like anyhow.
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 651a50e..736620d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ Copyright (C) 2019-2020 Robin Krahl <robin.krahl@ireas.org> SPDX-License-Identifier: CC0-1.0 --> -# Unreleased +# v0.7.0 (2020-07-14) - Refactor the `Error` enum so that it is `Send`, `Sync` and `'static`: - Remove the `sync::PoisonError` from the `PoisonError` variant. - Remove `Error::RandError` variant. @@ -3,7 +3,7 @@ [package] name = "nitrokey" -version = "0.6.0" +version = "0.7.0" authors = ["Robin Krahl <robin.krahl@ireas.org>"] edition = "2018" homepage = "https://code.ireas.org/nitrokey-rs/" |