Skip to content

Commit c93754a

Browse files
committed
Prepare for v2.2.0
1 parent 2706f01 commit c93754a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

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

33
Rack compatible HTTP router for Ruby
44

5+
## v2.2.0 - 2024-11-05
6+
7+
### Fixed
8+
9+
- [Damian C. Rossney, Kyle Plump] Support paths with different variable names in same path location (#273)
10+
511
## v2.2.0.rc1 - 2024-10-29
612

713
## v2.2.0.beta2 - 2024-09-25

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.2.0.rc1"
11+
VERSION = "2.2.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.2.0.rc1")
5+
expect(Hanami::Router::VERSION).to eq("2.2.0")
66
end
77
end

0 commit comments

Comments
 (0)