From 80d2c616cacd22b25982933326d9b6ffbed1eeb5 Mon Sep 17 00:00:00 2001 From: Eric Budd Date: Wed, 22 Sep 2021 00:03:28 -0500 Subject: [PATCH] Bump Iris version to 1.0.13 --- README.md | 8 ++++---- TODO.md | 3 +++ iris.rb | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 12c1aea..4a22c55 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.0.12. Type "help" for a list of commands.; Ctrl-D or 'quit' to leave. +Welcome to Iris v. 1.0.13. 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! @@ -370,7 +370,7 @@ This outputs the current version of Iris, along with messsage, topic, and author ```bash jennie_minnie@ctrl-c.club~> info -Iris 1.0.12 +Iris 1.0.13 13 topics, 0 unread. 50 messages, 0 unread. 10 authors. @@ -404,7 +404,7 @@ iris --version ``` ```bash -Iris 1.0.12 +Iris 1.0.13 ``` --- @@ -420,7 +420,7 @@ iris --stats ``` ```bash -Iris 1.0.12 +Iris 1.0.13 13 topics, 0 unread. 50 messages, 0 unread. 10 authors. diff --git a/TODO.md b/TODO.md index 52a448a..cc7881d 100644 --- a/TODO.md +++ b/TODO.md @@ -68,6 +68,9 @@ # Changelog +## 1.0.13 +* Fix reply ordering bug + ## 1.0.12 * Add Asara's "mark all read" functionality * Fix(?) bug with handling broken UTF-8 characters diff --git a/iris.rb b/iris.rb index dc4c31e..2b6ec65 100755 --- a/iris.rb +++ b/iris.rb @@ -8,7 +8,7 @@ require 'time' # require 'pry' # Only needed for debugging class Config - VERSION = '1.0.12' + VERSION = '1.0.13' MESSAGE_FILE = "#{ENV['HOME']}/.iris.messages" HISTORY_FILE = "#{ENV['HOME']}/.iris.history" IRIS_SCRIPT = __FILE__