Skip to content

Commit

Permalink
Prepare for v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Nov 13, 2023
1 parent 85f6a15 commit 1675533
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Code reloading for Hanami 2

## v2.1.0 - 2023-11-14

## v2.1.0.rc2 - 2023-11-08

## v2.1.0.rc1 - 2023-11-02
Expand Down
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ unless ENV["CI"]
gem "yard", require: false
end

gem "hanami-utils", "~> 2.1.rc", require: false, git: "https://github.com/hanami/utils.git", branch: "main"
gem "hanami-cli", "~> 2.1.rc", require: false, git: "https://github.com/hanami/cli.git", branch: "main"
gem "hanami", "~> 2.1.rc", require: false, git: "https://github.com/hanami/hanami.git", branch: "main"
gem "hanami-utils", "~> 2.1", require: false, github: "hanami/utils", branch: "main"
gem "hanami-cli", "~> 2.1", require: false, github: "hanami/cli", branch: "main"
gem "hanami", "~> 2.1", require: false, github: "hanami/hanami", branch: "main"

gem "hanami-devtools", require: false, git: "https://github.com/hanami/devtools.git", branch: "main"
gem "hanami-devtools", require: false, github: "hanami/devtools", branch: "main"
2 changes: 1 addition & 1 deletion hanami-reloader.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["rubygems_mfa_required"] = "true"

spec.add_dependency "hanami-cli", "~> 2.1.rc"
spec.add_dependency "hanami-cli", "~> 2.1"
spec.add_dependency "zeitwerk", "~> 2.6"

spec.add_development_dependency "bundler", ">= 1.6", "< 3"
Expand Down
4 changes: 3 additions & 1 deletion lib/hanami/reloader/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

module Hanami
module Reloader
VERSION = "2.1.0.rc2"
# @since 0.1.0
# @api public
VERSION = "2.1.0"
end
end
2 changes: 1 addition & 1 deletion spec/unit/hanami/reloader/version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

RSpec.describe "Hanami::Reloader::VERSION" do
it "exposes version" do
expect(Hanami::Reloader::VERSION).to eq("2.1.0.rc2")
expect(Hanami::Reloader::VERSION).to eq("2.1.0")
end
end

0 comments on commit 1675533

Please sign in to comment.