Bump Iris version to 1.1.1

This commit is contained in:
Eric B. Budd 2021-12-08 22:13:45 -06:00 committed by Eric Budd
parent a2a9c6078d
commit 972f1a8854
3 changed files with 12 additions and 5 deletions

View File

@ -1,5 +1,12 @@
# Changelog # Changelog
## 1.1.1
* Make discarded message response more prominent
* Try nano if /usr/bin/vim is not set
* Expand the technical documentation
* Flesh out some tests
* Clean up TODO file
## 1.1.0 ## 1.1.0
* Iris now composes messages with $EDITOR instead of using an internal editor * Iris now composes messages with $EDITOR instead of using an internal editor
* Remove (broken) feature that automatically selects a reply when not provided with a topic ID * Remove (broken) feature that automatically selects a reply when not provided with a topic ID

View File

@ -36,7 +36,7 @@ Iris has a readline interface that can be used to navigate the message corpus.
```bash ```bash
%> iris %> iris
Welcome to Iris v. 1.1.0. Type "help" for a list of commands.; Ctrl-D or 'quit' to leave. Welcome to Iris v. 1.1.1. Type "help" for a list of commands.; Ctrl-D or 'quit' to leave.
| ID | U | TIMESTAMP | AUTHOR | TITLE | ID | U | TIMESTAMP | AUTHOR | TITLE
| 1 | | 2018-01-24T05:49:53Z | jimmy_foo@ctrl-c.club | Welcome! | 1 | | 2018-01-24T05:49:53Z | jimmy_foo@ctrl-c.club | Welcome!
@ -368,7 +368,7 @@ This outputs the current version of Iris, along with messsage, topic, and author
```bash ```bash
jennie_minnie@ctrl-c.club~> info jennie_minnie@ctrl-c.club~> info
Iris 1.1.0 Iris 1.1.1
22 topics, 0 unread. 22 topics, 0 unread.
50 messages, 0 unread. 50 messages, 0 unread.
10 authors. 10 authors.
@ -402,7 +402,7 @@ iris --version
``` ```
```bash ```bash
Iris 1.1.0 Iris 1.1.1
``` ```
--- ---
@ -418,7 +418,7 @@ iris --stats
``` ```
```bash ```bash
Iris 1.1.0 Iris 1.1.1
22 topics, 0 unread. 22 topics, 0 unread.
50 messages, 0 unread. 50 messages, 0 unread.
10 authors. 10 authors.

View File

@ -22,7 +22,7 @@ class String
end end
class Config class Config
VERSION = '1.1.0' VERSION = '1.1.1'
MESSAGE_FILE = "#{ENV['HOME']}/.iris.messages" MESSAGE_FILE = "#{ENV['HOME']}/.iris.messages"
HISTORY_FILE = "#{ENV['HOME']}/.iris.history" HISTORY_FILE = "#{ENV['HOME']}/.iris.history"
IRIS_SCRIPT = __FILE__ IRIS_SCRIPT = __FILE__