From 537a2bb962cc60b09fe1453587f7a33acb6da4ab Mon Sep 17 00:00:00 2001 From: Tad Fisher Date: Sun, 4 Mar 2018 11:34:13 -0800 Subject: Update changelog for 1.1.0 --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index 0226d3e..43782b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Change Log ============= +Version 1.1.0 *(2018-03-04)* +------------------------------- + + * New: `insert` and `append` commands accept secret parameters directly using + the `--secret`, `--issuer` and `--account` arguments. + * Fix compatibility with Bash versions prior to 4.x. + * Return an error status for `code` when the passfile does not contain an + `otpauth://` entry. + Version 1.0.0 *(2017-03-20)* ------------------------------- -- cgit v1.2.3 From 5fb4620b087a34c93b8f67874992dcc6409f7fcc Mon Sep 17 00:00:00 2001 From: Tad Fisher Date: Thu, 28 Jun 2018 15:44:21 -0700 Subject: Version 1.1.1 --- CHANGELOG.md | 16 ++++++++++++++++ otp.bash | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index 43782b1..0ea68f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ Change Log ============= +Version 1.1.1 *(2018-06-28)* +------------------------------- + +This is mainly a bugfix release. + + * Numerous build and test infrstructure updates. (thanks @LucidOne) + * `insert` and `append` now require only one of "issuer" or "account", + matching the documentation. (thanks @sudoforge and @xPMo) + * `append` now displays the passfile in its prompt. (thanks @sudoforge) + * Add a separate `LICENSE` file. (thanks @dmarcoux) + * Avoid use of herestrings when reading input. (thanks @rbuzatu90) + * Discard base64 padding (`=` characters) in OTP secrets. + +In addition, thanks to @endgame and @brainstorm for their contributions to the +documentation. + Version 1.1.0 *(2018-03-04)* ------------------------------- diff --git a/otp.bash b/otp.bash index 55dbcb3..382ec19 100755 --- a/otp.bash +++ b/otp.bash @@ -16,7 +16,7 @@ # along with this program. If not, see . # [] -VERSION="1.1.0" +VERSION="1.1.1" OATH=$(which oathtool) ## source: https://gist.github.com/cdown/1163649 -- cgit v1.2.3