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 d728447 commit 4704274
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 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 @@

RSpec support for Hanami

## v2.1.0 - 2023-11-14

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

### Added
Expand Down
11 changes: 6 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ unless ENV["CI"]
gem "yard", require: false
end

gem "dry-files", require: false, git: "https://github.com/dry-rb/dry-files.git", branch: "main"
gem "dry-logger", require: false, git: "https://github.com/dry-rb/dry-logger.git", branch: "main"
gem "hanami-utils", require: false, git: "https://github.com/hanami/utils.git", branch: "main"
gem "hanami-cli", require: false, git: "https://github.com/hanami/cli.git", branch: "main"
gem "hanami", require: false, git: "https://github.com/hanami/hanami.git", branch: "main"
gem "dry-files", require: false, github: "dry-rb/dry-files", branch: "main"
gem "dry-logger", require: false, github: "dry-rb/dry-logger", branch: "main"

gem "hanami-utils", require: false, github: "hanami/utils", branch: "main"
gem "hanami-cli", require: false, github: "hanami/cli", branch: "main"
gem "hanami", require: false, github: "hanami/hanami", branch: "main"
2 changes: 1 addition & 1 deletion hanami-rspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "hanami-cli", "~> 2.1.rc"
spec.add_dependency "hanami-cli", "~> 2.1"
spec.add_dependency "rspec", "~> 3.12"
spec.add_dependency "rake", "~> 13.0"
spec.add_dependency "zeitwerk", "~> 2.6"
Expand Down
2 changes: 1 addition & 1 deletion lib/hanami/rspec/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ module RSpec
#
# @since 2.0.0
# @api public
VERSION = "2.1.0.rc2"
VERSION = "2.1.0"
end
end
2 changes: 1 addition & 1 deletion spec/unit/hanami/rspec/version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

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

0 comments on commit 4704274

Please sign in to comment.