Skip to content

Commit a21b36a

Browse files
committed
Version 0.5.0
1 parent 8f89f0c commit a21b36a

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

changelog.markdown

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
# Jester changelog
22

3-
## x.x.x - xx/xx/xxxx
3+
## 0.5.0 - 17/10/2020
4+
5+
Major new release mainly due to some breaking changes.
6+
This release brings compatibility with Nim 1.4.0 as well.
47

58
- **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)`)
69

10+
For full list, see the commits since the last version:
11+
12+
https://github.com/dom96/jester/compare/v0.4.3...v0.5.0
13+
714
## 0.4.3 - 12/08/2019
815

916
Minor release correcting a few packaging issues and includes some other

jester.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ type
7373
of RouteCode:
7474
data: ResponseData
7575

76-
const jesterVer = "0.4.3"
76+
const jesterVer = "0.5.0"
7777

7878
proc toStr(headers: Option[RawHeaders]): string =
7979
return $newHttpHeaders(headers.get(@({:})))

jester.nimble

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package
22

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

1111
# Deps
1212

13-
requires "nim >= 0.18.1"
13+
requires "nim >= 1.0.0"
1414

1515
when not defined(windows):
1616
requires "httpbeast >= 0.2.2"

0 commit comments

Comments
 (0)