Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.1.1 #113

Merged
merged 2 commits into from
Jan 31, 2024
Merged

2.1.1 #113

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- run: nimble install -y libcurl
- run: nimble install -y zippy
- run: nimble install -y urlly
- run: nimble install -y webby
- run: nim c tests/debug_server.nim

- run: nimble test -y --gc:refc
Expand Down
2 changes: 1 addition & 1 deletion puppy.nimble
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "2.1.0"
version = "2.1.1"
author = "Andre von Houck"
description = "Puppy fetches resources via HTTP and HTTPS."
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions src/puppy/platforms/win32/platform.nim
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ proc internalFetch*(req: Request): Response {.raises: [PuppyError].} =
openRequestFlags = openRequestFlags or WINHTTP_FLAG_SECURE

var objectName = req.url.path
if req.url.search != "":
objectName &= "?" & req.url.search
if req.url.query.len > 0:
objectName &= "?" & $req.url.query

let
wideVerb = req.verb.toUpperAscii().wstr()
Expand Down
2 changes: 1 addition & 1 deletion tests/debug_server.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import asyncdispatch, asynchttpserver, uri, urlly, zippy
import asyncdispatch, asynchttpserver, uri, webby, zippy

let server = newAsyncHttpServer()

Expand Down
Loading