From 438a18163ce18cc2772c50a3f8d33abb97b038bf Mon Sep 17 00:00:00 2001 From: Tim Riley Date: Sun, 14 Jul 2024 16:13:53 +1000 Subject: [PATCH] Prepare for v1.1.0 --- changelog.yml | 5 +++++ lib/dry/cli/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelog.yml b/changelog.yml index c726276..bf96cbd 100644 --- a/changelog.yml +++ b/changelog.yml @@ -1,4 +1,9 @@ --- +- version: 1.1.0 + date: 2024-07-14 + added: + - |- + Added `:flag` option type. This acts like a `:boolean` that can only be set to true, so has no `--no-` prefix to disable it. (@Billiam in #117) - version: 1.0.0 date: 2022-11-05 changed: diff --git a/lib/dry/cli/version.rb b/lib/dry/cli/version.rb index ac56ef7..4d26245 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.0.0" + VERSION = "1.1.0" end end