Skip to content

Commit

Permalink
bump 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout committed Oct 26, 2020
1 parent 8708a94 commit 6d8604e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## 0.4.2

fix custom setting error (#100)

plugin.nim is for document only (#99)

fix static file serving is slow in windows(`usestd` also works)

## 0.3.8

Move `basicAuthMiddleware` from `auth/auth.nim` to `middlewares/auth.nim`. Users need to change the import clause to `import prologue/middlewares/auth`.
Expand Down
2 changes: 1 addition & 1 deletion prologue.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.4.0"
version = "0.4.2"
author = "flywind"
description = "Prologue is an elegant and high performance web framework"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/prologue/core/constants.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const
PrologueVersion* = "0.4.0" ## The current version of Prologue.
PrologueVersion* = "0.4.2" ## The current version of Prologue.
ProloguePrefix* = "PROLOGUE" ## The helper prefix for environment variables.
useAsyncHTTPServer* = defined(usestd) ## Uses `asynchttpserver`.

0 comments on commit 6d8604e

Please sign in to comment.