From a1d35d1beb27144b7102ea0872433a209b31e559 Mon Sep 17 00:00:00 2001 From: Tim Riley Date: Tue, 15 Oct 2024 13:20:30 +0900 Subject: [PATCH] Prepare for v1.2.0 --- changelog.yml | 6 ++++-- lib/dry/cli/version.rb | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/changelog.yml b/changelog.yml index 2fea4ef..e583c97 100644 --- a/changelog.yml +++ b/changelog.yml @@ -1,9 +1,11 @@ --- -- version: 1.1.1 - date: 2024-08-09 +- version: 1.2.0 + date: 2024-10-15 added: - |- Added `:hidden` option to register commands that should not be shown in the help output. (@benoittgt in #137) + - |- + Provide suggestions when there is a typo in a command name. (@benoittgt in #138) - version: 1.1.0 date: 2024-07-14 added: diff --git a/lib/dry/cli/version.rb b/lib/dry/cli/version.rb index 4d26245..ca2e777 100644 --- a/lib/dry/cli/version.rb +++ b/lib/dry/cli/version.rb @@ -3,6 +3,6 @@ module Dry class CLI # @since 0.1.0 - VERSION = "1.1.0" + VERSION = "1.2.0" end end