Skip to content

Commit

Permalink
release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
ttscoff committed Aug 1, 2021
1 parent 1e1be0d commit 6932d56
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.0.68

- Fix error in `doing show --sort` argument parsing

### 1.0.67

- Gem packaging error
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ _Side note:_ I actually use the library behind this utility as part of another s

## Installation

The current version of `doing` is <!--VER-->1.0.66<!--END VER-->.
The current version of `doing` is <!--VER-->1.0.67<!--END VER-->.

$ [sudo] gem install doing

Expand Down
2 changes: 1 addition & 1 deletion bin/doing
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ command :show do |c|

c.desc 'Sort order (asc/desc)'
c.arg_name 'ORDER'
c.flag %i[s sort], must_match: /^(?:a|d)/i, default_value: 'ASC'
c.flag %i[s sort], must_match: /^[ad].*/i, default_value: 'ASC'

c.desc %(
Date range to show, or a single day to filter date on.
Expand Down
2 changes: 1 addition & 1 deletion lib/doing/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Doing
VERSION = '1.0.67'
VERSION = '1.0.68'
end

0 comments on commit 6932d56

Please sign in to comment.