We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2706f01 commit c93754aCopy full SHA for c93754a
CHANGELOG.md
@@ -2,6 +2,12 @@
2
3
Rack compatible HTTP router for Ruby
4
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
11
## v2.2.0.rc1 - 2024-10-29
12
13
## v2.2.0.beta2 - 2024-09-25
lib/hanami/router/version.rb
@@ -8,6 +8,6 @@ class Router
#
# @since 0.1.0
# @api public
- VERSION = "2.2.0.rc1"
+ VERSION = "2.2.0"
end
spec/unit/hanami/router/version_spec.rb
@@ -2,6 +2,6 @@
RSpec.describe "Hanami::Router::VERSION" do
it "exposes version" do
- expect(Hanami::Router::VERSION).to eq("2.2.0.rc1")
+ expect(Hanami::Router::VERSION).to eq("2.2.0")
0 commit comments