From a66699f124f948fe74c4da424dcd4a0aee84afe6 Mon Sep 17 00:00:00 2001 From: flywind Date: Sat, 29 Aug 2020 18:16:20 +0800 Subject: [PATCH] fix #36 --- changelog.md | 4 ++++ prologue.nimble | 4 ++-- src/prologue/core/constants.nim | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 591969568..a75e61398 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,7 @@ +## 0.3.4 + +Fixes "Always asked to install `cookiejar` when running" #36 + ## 0.3.2 Fixes `resp "Hello"` will clear all attributes. diff --git a/prologue.nimble b/prologue.nimble index a7589c671..fe0a622fe 100644 --- a/prologue.nimble +++ b/prologue.nimble @@ -1,6 +1,6 @@ # Package -version = "0.3.2" +version = "0.3.4" author = "flywind" description = "Full-Stack Web Framework." license = "Apache-2.0" @@ -12,7 +12,7 @@ requires "nim >= 1.2.6" requires "regex >= 0.16.2" requires "nimcrypto >= 0.5.3" requires "karax >= 1.1.2" -requires "https://github.com/planety/cookiejar >= 0.2.0" +requires "cookiejar >= 0.2.0" requires "httpx >= 0.1.0" diff --git a/src/prologue/core/constants.nim b/src/prologue/core/constants.nim index c3fc724c9..73baa4043 100644 --- a/src/prologue/core/constants.nim +++ b/src/prologue/core/constants.nim @@ -1,3 +1,3 @@ const - PrologueVersion* = "0.3.2" ## The version of Prologue. + PrologueVersion* = "0.3.4" ## The version of Prologue. ProloguePrefix* = "PROLOGUE_" ## The helper prefix for Prologue.