diff --git a/changelog.markdown b/changelog.markdown index f219a5a..814e809 100644 --- a/changelog.markdown +++ b/changelog.markdown @@ -1,5 +1,10 @@ # Jester changelog +## 0.4.1 - 24/08/2018 + +This is a minor release containing a number of bug fixes. The main purpose of +this release is compatibility with the recent Nim seq/string changes. + ## 0.4.0 - 18/07/2018 This is a major new release focusing on optimizations. In one specific benchmark diff --git a/jester.nim b/jester.nim index 778d040..71eb8f6 100644 --- a/jester.nim +++ b/jester.nim @@ -72,7 +72,7 @@ type of RouteCode: data: ResponseData -const jesterVer = "0.4.0" +const jesterVer = "0.4.1" proc toStr(headers: Option[RawHeaders]): string = return $newHttpHeaders(headers.get(@({:}))) diff --git a/jester.nimble b/jester.nimble index 08e990b..32a0cd6 100644 --- a/jester.nimble +++ b/jester.nimble @@ -1,6 +1,6 @@ # Package -version = "0.4.0" # Be sure to update jester.jesterVer too! +version = "0.4.1" # Be sure to update jester.jesterVer too! author = "Dominik Picheta" description = "A sinatra-like web framework for Nim." license = "MIT"