From cb983976d43c2541a01baf40230457587bf1ea2f Mon Sep 17 00:00:00 2001 From: Jakob Skjerning Date: Fri, 1 Dec 2023 11:18:30 +0100 Subject: [PATCH] Prepare next release --- CHANGELOG.md | 2 ++ lib/route_downcaser/version.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b2d775..dfa0bd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 2.0.0 + * [BREAKING] We now rely only on rack-spec-compliant values to investigate the URLs. This should improve compatibility with different application servers. In particular, this means we now ignore the `REQUEST_URI` value and rely solely on `PATH_INFO`. If your application relies on `REQUEST_URI` being downcased, this could be a breaking change. * Added support for URLs with non-ASCII characters in them. In other words, your application shouldn't get stuck in a an infinite redirect loop when a request contains non-ASCII characters that can be downcased. diff --git a/lib/route_downcaser/version.rb b/lib/route_downcaser/version.rb index c4248f9..2c8e73b 100644 --- a/lib/route_downcaser/version.rb +++ b/lib/route_downcaser/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RouteDowncaser - VERSION = "2.0.0" + VERSION = "2.1.0" end