Bump version to 1.0.7

This commit is contained in:
Eric Budd 2018-05-31 12:18:59 -04:00
parent 444e5435dd
commit e4dea5c449
3 changed files with 10 additions and 7 deletions

View File

@ -34,7 +34,7 @@ Iris has a readline interface that can be used to navigate the message corpus.
### Readline Interface Example
```
%> iris
Welcome to Iris v. 1.0.6. Type "help" for a list of commands.; Ctrl-D or 'quit' to leave.
Welcome to Iris v. 1.0.7. 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!
@ -307,7 +307,7 @@ This outputs the current version of Iris, along with messsage, topic, and author
```
jennie_minnie@ctrl-c.club~> info
Iris 1.0.6
Iris 1.0.7
13 topics, 0 unread.
50 messages, 0 unread.
10 authors.
@ -339,7 +339,7 @@ iris --version
```
```
Iris 1.0.6
Iris 1.0.7
```
---
@ -355,7 +355,7 @@ iris --stats
```
```
Iris 1.0.6
Iris 1.0.7
13 topics, 0 unread.
50 messages, 0 unread.
10 authors.

View File

@ -4,11 +4,12 @@
## Editing/Deleting: Complete!
## Documentation: In Progress
# For 1.0.7
* ~Fix "unread count" bug~
# For 1.0.8
* Add integration tests
* Add ability to run with test iris file
* Continue to make loader more durable against corrupted data files
* Time to start refactoring!
* Health check CLI flag
# Bugs:
* Is `Time.now.utc.iso8601` working as expected?
@ -86,3 +87,5 @@
* ~Add unread topic to overall unread count~
# Completed as of 1.0.7
* ~Fix "unread count" bug~

View File

@ -8,7 +8,7 @@ require 'readline'
# require 'pry' # Only needed for debugging
class Config
VERSION = '1.0.6'
VERSION = '1.0.7'
MESSAGE_FILE = "#{ENV['HOME']}/.iris.messages"
HISTORY_FILE = "#{ENV['HOME']}/.iris.history"
READ_FILE = "#{ENV['HOME']}/.iris.read"