Skip to content

Commit 5e70e91

Browse files
committed
Prepare for v2.1.0
1 parent 37c58e3 commit 5e70e91

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
Rack compatible HTTP router for Ruby
44

5+
## v2.1.0 - 2023-11-14
6+
57
## v2.1.0.rc2 - 2023-11-08
68

79
## v2.1.0.rc1 - 2023-11-02

Gemfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ unless ENV["CI"]
99
gem "yard-junk"
1010
end
1111

12-
gem "hanami-utils", "~> 2.0", git: "https://github.com/hanami/utils.git", branch: "main"
13-
gem "hanami-devtools", git: "https://github.com/hanami/devtools.git", branch: "main"
12+
gem "hanami-devtools", github: "hanami/devtools", branch: "main"

lib/hanami/middleware/body_parser/form_parser.rb

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ def self.mime_types
2323

2424
# Parse a multipart body payload (form file uploading)
2525
#
26-
# @param body [String] a multipart body
27-
#
2826
# @return [Hash] the parsed multipart body
2927
#
3028
# @raise [Hanami::Middleware::BodyParser::BodyParsingError] when the body can't be parsed.

lib/hanami/router/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ class Router
88
#
99
# @since 0.1.0
1010
# @api public
11-
VERSION = "2.1.0.rc2"
11+
VERSION = "2.1.0"
1212
end
1313
end

spec/unit/hanami/router/version_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
RSpec.describe "Hanami::Router::VERSION" do
44
it "exposes version" do
5-
expect(Hanami::Router::VERSION).to eq("2.1.0.rc2")
5+
expect(Hanami::Router::VERSION).to eq("2.1.0")
66
end
77
end

0 commit comments

Comments
 (0)