aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTad Fisher <tadfisher@gmail.com>2018-06-28 15:44:21 -0700
committerTad Fisher <tadfisher@gmail.com>2018-06-28 15:44:44 -0700
commit5fb4620b087a34c93b8f67874992dcc6409f7fcc (patch)
tree94ceab018dfbe48cbf4f0de452e3766d94d32242
parentcb461eb752766c34cec422110239fbae4e1765fd (diff)
Version 1.1.1
-rw-r--r--CHANGELOG.md16
-rwxr-xr-xotp.bash2
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)*
-------------------------------
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 <http://www.gnu.org/licenses/>.
# []
-VERSION="1.1.0"
+VERSION="1.1.1"
OATH=$(which oathtool)
## source: https://gist.github.com/cdown/1163649