Skip to content

Commit

Permalink
Version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dom96 committed Oct 17, 2020
1 parent 8f89f0c commit a21b36a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion changelog.markdown
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# Jester changelog

## x.x.x - xx/xx/xxxx
## 0.5.0 - 17/10/2020

Major new release mainly due to some breaking changes.
This release brings compatibility with Nim 1.4.0 as well.

- **Breaking change:** By default `redirect` now skips future handlers, including when used in a `before` route. To retain the old behavior, set the parameter `halt=false` (e.g. `redirect("/somewhere", halt=false)`)

For full list, see the commits since the last version:

https://github.com/dom96/jester/compare/v0.4.3...v0.5.0

## 0.4.3 - 12/08/2019

Minor release correcting a few packaging issues and includes some other
Expand Down
2 changes: 1 addition & 1 deletion jester.nim
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ type
of RouteCode:
data: ResponseData

const jesterVer = "0.4.3"
const jesterVer = "0.5.0"

proc toStr(headers: Option[RawHeaders]): string =
return $newHttpHeaders(headers.get(@({:})))
Expand Down
4 changes: 2 additions & 2 deletions jester.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.4.3" # Be sure to update jester.jesterVer too!
version = "0.5.0" # Be sure to update jester.jesterVer too!
author = "Dominik Picheta"
description = "A sinatra-like web framework for Nim."
license = "MIT"
Expand All @@ -10,7 +10,7 @@ skipDirs = @["tests"]

# Deps

requires "nim >= 0.18.1"
requires "nim >= 1.0.0"

when not defined(windows):
requires "httpbeast >= 0.2.2"
Expand Down

0 comments on commit a21b36a

Please sign in to comment.