diff options
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 2 |
3 files changed, 12 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..69a7245 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# v0.1.1 (2018-05-21) + +- Update the `nitrokey-sys` dependency to version 3.3.0. Now `libnitrokey` + is built from source and `bindgen` is no longer a build dependency. +- Add `get_minor_firmware_version` to `Device`. +- Use `NK_login_enum` instead of `NK_login` in `Device::connect`. + +# v0.1.0 (2018-05-19) + +- Initial release @@ -1,6 +1,6 @@ [package] name = "nitrokey" -version = "0.1.0" +version = "0.1.1" authors = ["Robin Krahl <robin.krahl@ireas.org>"] homepage = "https://code.ireas.org/nitrokey-rs/" repository = "https://git.ireas.org/nitrokey-rs/" @@ -6,7 +6,7 @@ A libnitrokey wrapper for Rust providing access to Nitrokey devices. ```toml [dependencies] -nitrokey = "0.1.0" +nitrokey = "0.1.1" ``` ## Compatibility |