diff options
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | README.md | 2 |
3 files changed, 11 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 69a7245..271b595 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v0.2.0 (2018-12-10) + +- Update to libnitrokey v3.4.1. +- Major refactoring of the existing code structure. +- Add support for most of the Nitrokey Pro features and some of the Nitrokey + Storage features. See the `TODO.md` file for more details about the missing + functionality. + # v0.1.1 (2018-05-21) - Update the `nitrokey-sys` dependency to version 3.3.0. Now `libnitrokey` @@ -1,6 +1,6 @@ [package] name = "nitrokey" -version = "0.1.1" +version = "0.2.0" authors = ["Robin Krahl <robin.krahl@ireas.org>"] homepage = "https://code.ireas.org/nitrokey-rs/" repository = "https://git.ireas.org/nitrokey-rs/" @@ -18,5 +18,5 @@ test-storage = [] [dependencies] libc = "0.2" -nitrokey-sys = "3.4.0" +nitrokey-sys = "3.4.1" rand = "0.4" @@ -6,7 +6,7 @@ A libnitrokey wrapper for Rust providing access to Nitrokey devices. ```toml [dependencies] -nitrokey = "0.1.1" +nitrokey = "0.2.0" ``` ## Compatibility |