From 972f1a885470331d26d218a3e1be291aa862a4f4 Mon Sep 17 00:00:00 2001 From: Eric Budd Date: Wed, 8 Dec 2021 22:13:45 -0600 Subject: [PATCH] Bump Iris version to 1.1.1 --- CHANGELOG | 7 +++++++ README.md | 8 ++++---- iris.rb | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 90ede85..2b52791 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,12 @@ # 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 * 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 diff --git a/README.md b/README.md index 0022692..e2e88d0 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Iris has a readline interface that can be used to navigate the message corpus. ```bash %> 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 | 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 jennie_minnie@ctrl-c.club~> info -Iris 1.1.0 +Iris 1.1.1 22 topics, 0 unread. 50 messages, 0 unread. 10 authors. @@ -402,7 +402,7 @@ iris --version ``` ```bash -Iris 1.1.0 +Iris 1.1.1 ``` --- @@ -418,7 +418,7 @@ iris --stats ``` ```bash -Iris 1.1.0 +Iris 1.1.1 22 topics, 0 unread. 50 messages, 0 unread. 10 authors. diff --git a/iris.rb b/iris.rb index 30bef2a..86ba58b 100755 --- a/iris.rb +++ b/iris.rb @@ -22,7 +22,7 @@ class String end class Config - VERSION = '1.1.0' + VERSION = '1.1.1' MESSAGE_FILE = "#{ENV['HOME']}/.iris.messages" HISTORY_FILE = "#{ENV['HOME']}/.iris.history" IRIS_SCRIPT = __FILE__