diff --git a/changelog.md b/changelog.md index c2c52a4..26eacbd 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,10 @@ ## next [????.??.??] +## 0.21.1 + ### Fixes * Path parameters with value matching the parameter name prefixed by colon will properly populate `pathParams` with their literal value : `/:param` will match `/:param` and add a `Param` with value `("param", ":param")` (#301) +* Accept text-2.1 (#364) ## 0.21 [2023.12.17] diff --git a/scotty.cabal b/scotty.cabal index b79e8e2..31749af 100644 --- a/scotty.cabal +++ b/scotty.cabal @@ -1,5 +1,5 @@ Name: scotty -Version: 0.21 +Version: 0.21.1 Synopsis: Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp Homepage: https://github.com/scotty-web/scotty Bug-reports: https://github.com/scotty-web/scotty/issues @@ -84,7 +84,7 @@ Library network >= 2.6.0.2 && < 3.2, regex-compat >= 0.95.1 && < 0.96, stm, - text >= 0.11.3.1 && < 2.1, + text >= 0.11.3.1 && < 2.2, time >= 1.8, transformers >= 0.3.0.0 && < 0.7, transformers-base >= 0.4.1 && < 0.5,