diff options
author | Daniel Mueller <deso@posteo.net> | 2018-12-11 18:18:24 -0800 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2018-12-11 18:18:24 -0800 |
commit | 7fd034561b13bac5ab02d8ba23c40be1a70b5a9c (patch) | |
tree | 669052929797ee7b737bfc1f3c346a3ae3dc6a22 | |
parent | 9c80ad0f2e21bd82d071571db4e8a94a575146e5 (diff) | |
download | nitrocli-7fd034561b13bac5ab02d8ba23c40be1a70b5a9c.tar.gz nitrocli-7fd034561b13bac5ab02d8ba23c40be1a70b5a9c.tar.bz2 |
Add change log detailing the changes between releases
In order for users to decide whether an update of the program is
justified (or, to potentially help in identifying changes that resulted
in a regression), it is often a good idea to provide a brief summary of
all the changes that went into a particular release.
With this change we add a change log for the program to the repository.
Through a bit of code archeology the log stretches back to the initial
release.
-rw-r--r-- | nitrocli/CHANGELOG.md | 33 | ||||
-rw-r--r-- | nitrocli/README.md | 2 |
2 files changed, 35 insertions, 0 deletions
diff --git a/nitrocli/CHANGELOG.md b/nitrocli/CHANGELOG.md new file mode 100644 index 0000000..400d265 --- /dev/null +++ b/nitrocli/CHANGELOG.md @@ -0,0 +1,33 @@ +Unreleased +---------- +- Show PIN related errors through `pinentry` native reporting mechanism + instead of emitting them to `stdout` +- Applied a couple of `clippy` reported suggestions +- Changed dependency version requirements to be less strict (only up to + the minor version and not the patch level) +- Bumped `pkg-config` dependency to `0.3.14` +- Bumped `libc` dependency to `0.2.45` +- Bumped `cc` dependency to `1.0.25` + + +0.1.2 +----- +- Replaced deprecated `gcc` dependency with `cc` and bumped to `1.0.4` +- Bumped `hid` dependency to `0.4.1` +- Bumped `hidapi-sys` dependency to `0.1.4` +- Bumped `libc` dependency to `0.2.36` + + +0.1.1 +----- +- Fixed display of firmware version for `status` command +- Removed workaround for incorrect CRC checksum produced by the Nitrokey + Storage device + - The problem has been fixed upstream (`nitrokey-storage-firmware` + [issue #32](https://github.com/Nitrokey/nitrokey-storage-firmware/issues/32)) + - In order to be usable, a minimum firmware version of 0.47 is required + + +0.1.0 +----- +- Initial release diff --git a/nitrocli/README.md b/nitrocli/README.md index bcb47df..1e103e8 100644 --- a/nitrocli/README.md +++ b/nitrocli/README.md @@ -1,6 +1,8 @@ nitrocli ======== +- [Changelog](CHANGELOG.md) + **nitrocli** is a program that provides a command line interface for certain commands on the [Nitrokey Storage][nitrokey] device. |