diff --git a/CHANGELOG b/CHANGELOG index 4d57ca8..8313a3e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,9 @@ # Changelog ## 1.1.2 -* Fix bug where "hostname" portion of author is missing or garbled +* Fixed bug where "hostname" portion of author is missing or garbled. +* Added CLI completion scripts for bash and zsh. [Thanks, jlxip!](https://github.com/jlxip) +* Minor tweaks and additions to the documentation. ## 1.1.1 * Make discarded message response more prominent diff --git a/README.md b/README.md index 2e98328..a71ad70 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Iris has a readline interface that can be used to navigate the message corpus. ```bash %> iris -Welcome to Iris v. 1.1.1. Type "help" for a list of commands.; Ctrl-D or 'quit' to leave. +Welcome to Iris v. 1.1.2. Type "help" for a list of commands.; Ctrl-D or 'quit' to leave. | ID | U | TIMESTAMP | AUTHOR | TITLE | 1 | | 2018-01-24T05:49:53Z | jimmy_foo@ctrl-c.club | Welcome! @@ -369,7 +369,7 @@ This outputs the current version of Iris, along with messsage, topic, and author ```bash jennie_minnie@ctrl-c.club~> info -Iris 1.1.1 +Iris 1.1.2 22 topics, 0 unread. 50 messages, 0 unread. 10 authors. @@ -444,7 +444,7 @@ iris --stats ``` ```bash -Iris 1.1.1 +Iris 1.1.2 22 topics, 0 unread. 50 messages, 0 unread. 10 authors. @@ -473,7 +473,7 @@ iris --version ``` ```bash -Iris 1.1.1 +Iris 1.1.2 ``` ## Text Features/Markup diff --git a/iris.rb b/iris.rb index 37344d8..d6f85cb 100755 --- a/iris.rb +++ b/iris.rb @@ -22,7 +22,7 @@ class String end class Config - VERSION = '1.1.1' + VERSION = '1.1.2' MESSAGE_FILE = "#{ENV['HOME']}/.iris.messages" HISTORY_FILE = "#{ENV['HOME']}/.iris.history" IRIS_SCRIPT = __FILE__