diff --git a/docs/pages/1 - Cask: a Scala HTTP micro-framework.md b/docs/pages/1 - Cask: a Scala HTTP micro-framework.md index 1dad2cef95..9832d1b604 100644 --- a/docs/pages/1 - Cask: a Scala HTTP micro-framework.md +++ b/docs/pages/1 - Cask: a Scala HTTP micro-framework.md @@ -81,10 +81,10 @@ via the following coordinates: ```scala // Mill -ivy"com.lihaoyi::cask:0.9.1" +ivy"com.lihaoyi::cask:0.9.2" // SBT -"com.lihaoyi" %% "cask" % "0.9.1" +"com.lihaoyi" %% "cask" % "0.9.2" ``` The `./mill` command is just a wrapper around the diff --git a/readme.md b/readme.md index 4ac2df3553..1d3516cdf1 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -Cask 0.9.1: a Scala HTTP micro-framework [![Gitter Chat][gitter-badge]][gitter-link] [![Patreon][patreon-badge]][patreon-link] +Cask 0.9.2: a Scala HTTP micro-framework [![Gitter Chat][gitter-badge]][gitter-link] [![Patreon][patreon-badge]][patreon-link] =========================================================================================================================================================================== [gitter-badge]: https://badges.gitter.im/Join%20Chat.svg @@ -44,6 +44,18 @@ courtesy of EJ Technologies ## Changelog +### 0.9.2 + +- Properly decode URL parameters when passed as path segments or query params [#114](https://github.com/com-lihaoyi/cask/pull/114) + +- Preserve leading slash when resolving static paths [#111](https://github.com/com-lihaoyi/cask/pull/111) + +- Add `cask.QueryParams` type to allow route methods to take arbitrary query parameters, + add `cask.RemainingPathSegments` as replacement for `subpath = true` + [#108](https://github.com/com-lihaoyi/cask/pull/108) + [#109](https://github.com/com-lihaoyi/cask/pull/109) + [#110](https://github.com/com-lihaoyi/cask/pull/110) + ### 0.9.1 - Update `org.xerial:sqlite-jdbc` library in examples to version `3.41.2.1` to