Skip to content

Commit

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

#### FIXED

- Default value for `doing again --bool` was ALL, should be AND

### 1.0.59

#### IMPROVED
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.58<!--END VER-->.
The current version of `doing` is <!--VER-->1.0.59<!--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 @@ -572,7 +572,7 @@ command [:again, :resume] do |c|

c.desc 'Boolean used to combine multiple tags'
c.arg_name 'BOOLEAN'
c.flag [:bool], must_match: /^(and|or|not)$/i, default_value: 'ALL'
c.flag [:bool], must_match: /^(and|or|not)$/i, default_value: 'AND'

c.desc 'Note'
c.arg_name 'TEXT'
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.59'
VERSION = '1.0.60'
end

0 comments on commit 0ccae2a

Please sign in to comment.