From c93754a2137a7c5c26dd589fa6c9dd418b78e942 Mon Sep 17 00:00:00 2001 From: Tim Riley Date: Tue, 5 Nov 2024 20:09:56 +1100 Subject: [PATCH] Prepare for v2.2.0 --- CHANGELOG.md | 6 ++++++ lib/hanami/router/version.rb | 2 +- spec/unit/hanami/router/version_spec.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da25c35..3c99b90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ Rack compatible HTTP router for Ruby +## v2.2.0 - 2024-11-05 + +### Fixed + +- [Damian C. Rossney, Kyle Plump] Support paths with different variable names in same path location (#273) + ## v2.2.0.rc1 - 2024-10-29 ## v2.2.0.beta2 - 2024-09-25 diff --git a/lib/hanami/router/version.rb b/lib/hanami/router/version.rb index ce4406d..300eed1 100644 --- a/lib/hanami/router/version.rb +++ b/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 end diff --git a/spec/unit/hanami/router/version_spec.rb b/spec/unit/hanami/router/version_spec.rb index 0fe3aee..d3aa6d6 100644 --- a/spec/unit/hanami/router/version_spec.rb +++ b/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") end end