diff --git a/CHANGELOG.md b/CHANGELOG.md index ba1f341d..852c54eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,31 +1,15 @@ -### 2.1.74 +### 2.1.75 -2023-01-01 07:19 - -### 2.1.73 - -2023-01-01 07:10 +2023-01-01 07:30 #### FIXED -- Comparison of Doing::Section to string - -### 2.1.72 - -2023-01-01 06:30 +- Fixing gem release script #### NEW - `doing commands list [QUERY]` command to display enabled and disabled commands -#### IMPROVED - -- Add --since as alias for --back on again, done, meanwhile and now - -#### FIXED - -- Comparison of Doing::Section to string - ### 2.1.69 2022-08-28 14:37 @@ -34,10 +18,6 @@ - Add --since as alias for --back on again, done, meanwhile and now -#### FIXED - -- Comparison of Doing::Section to string - ### 2.1.68 2022-08-08 12:19 diff --git a/Gemfile.lock b/Gemfile.lock index 39fca261..e3d16925 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - doing (2.1.74) + doing (2.1.75) chronic (~> 0.10, >= 0.10.2) deep_merge (~> 1.2, >= 1.2.1) gli (~> 2.20, >= 2.20.1) diff --git a/README.md b/README.md index cc3eec30..7bf10182 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ _If you're one of the rare people like me who find this useful, feel free to -The current version of `doing` is 2.1.67. +The current version of `doing` is 2.1.74. Find all of the documentation in the [doing wiki][wiki]. diff --git a/bin/commands/commands.rb b/bin/commands/commands.rb index abff9516..789ce835 100644 --- a/bin/commands/commands.rb +++ b/bin/commands/commands.rb @@ -140,10 +140,11 @@ def add_command(args) list.switch %i[d disabled] list.action do |_global, options, args| + style = options[:style] ? options[:style].normalize_list_style : :space if options[:disabled] - cmd.list_disabled_commands(args, style: options[:style].normalize_list_style) + cmd.list_disabled_commands(args, style: style) else - cmd.list_commands(args, style: options[:style].normalize_list_style) + cmd.list_commands(args, style: style) end end end diff --git a/lib/doing/version.rb b/lib/doing/version.rb index c4799077..479e362f 100644 --- a/lib/doing/version.rb +++ b/lib/doing/version.rb @@ -1,3 +1,3 @@ module Doing - VERSION = '2.1.74' + VERSION = '2.1.75' end