diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2020-07-14 21:43:37 +0200 |
---|---|---|
committer | Robin Krahl <robin.krahl@ireas.org> | 2020-07-14 21:43:37 +0200 |
commit | d0f517eec5fbeb402a42eb2b23ca13fc85f1bc98 (patch) | |
tree | 1bba179f71828cb9e0004c82ed991fe22cddf3f2 /CHANGELOG.md | |
parent | cf460cbb5e616d12f5e6b1f64acddf3ec0e7b087 (diff) | |
parent | f1e83eb81879412e1de9898238ba58289bb6cb24 (diff) | |
download | nitrokey-rs-d0f517eec5fbeb402a42eb2b23ca13fc85f1bc98.tar.gz nitrokey-rs-d0f517eec5fbeb402a42eb2b23ca13fc85f1bc98.tar.bz2 |
Merge branch 'poison-error' into next
This patch series refactors the Error enum and ensures that it is Send,
Sync and 'static. This makes sure that it is compatible with the anyhow
crate. To achieve this, we drop the RandError variant and remove the
sync::PoisonError value from the PoisonError variant.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e2dd8a7..651a50e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ Copyright (C) 2019-2020 Robin Krahl <robin.krahl@ireas.org> SPDX-License-Identifier: CC0-1.0 --> +# Unreleased +- Refactor the `Error` enum so that it is `Send`, `Sync` and `'static`: + - Remove the `sync::PoisonError` from the `PoisonError` variant. + - Remove `Error::RandError` variant. + # v0.6.0 (2020-02-03) - Add `String` value to the `Error::UnexpectedError` variant. - Always store serial numbers as structs: |