Skip to content

Commit

Permalink
Prepare for v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
timriley committed Nov 13, 2024
1 parent 8a91c8d commit a76a653
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/hanami/cli/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ module CLI
#
# @api public
# @since 2.0.0
VERSION = "2.2.0"
VERSION = "2.2.1"
end
end
2 changes: 1 addition & 1 deletion spec/unit/hanami/cli/version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a76a653

Please sign in to comment.