Bump Iris version to 1.1.2

This commit is contained in:
Eric B. Budd 2022-12-26 00:00:00 -06:00 committed by Eric Budd
parent f046b1a436
commit 03dfd561b4
3 changed files with 8 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -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__