diff options
-rw-r--r-- | CHANGELOG.md | 16 | ||||
-rwxr-xr-x | otp.bash | 2 |
2 files changed, 17 insertions, 1 deletions
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)* ------------------------------- @@ -16,7 +16,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # [] -VERSION="1.1.0" +VERSION="1.1.1" OATH=$(which oathtool) ## source: https://gist.github.com/cdown/1163649 |