diff --git a/CHANGELOG.md b/CHANGELOG.md index 83953edd..7bf7ae34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ Hanami Command Line Interface +## v2.2.1 - 2024-11-12 + +### Changed + +- [Tim Riley] Run a bundle install inside `hanami install`. Combined with first-party extension gems modifying the new app's `Gemfile` via a `before "install"` command hook, this ensures that all necessary gems are installed duringthe `hanami new` command. (#269) + +### Fixed + +- [Tim Riley] Allow `hanami new` to be called with `--skip-db` (#266) + ## v2.2.0 - 2024-11-05 ### Changed diff --git a/lib/hanami/cli/version.rb b/lib/hanami/cli/version.rb index 20c8aae8..cbae99e5 100644 --- a/lib/hanami/cli/version.rb +++ b/lib/hanami/cli/version.rb @@ -6,6 +6,6 @@ module CLI # # @api public # @since 2.0.0 - VERSION = "2.2.0" + VERSION = "2.2.1" end end diff --git a/spec/unit/hanami/cli/version_spec.rb b/spec/unit/hanami/cli/version_spec.rb index cc9ecb14..9102f5ca 100644 --- a/spec/unit/hanami/cli/version_spec.rb +++ b/spec/unit/hanami/cli/version_spec.rb @@ -2,6 +2,6 @@ RSpec.describe "Hanami::CLI::VERSION" do it "returns version" do - expect(Hanami::CLI::VERSION).to eq("2.2.0") + expect(Hanami::CLI::VERSION).to eq("2.2.1") end end