diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 477beb4..707f17c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/puppy.nimble b/puppy.nimble index c19c021..8dfcae7 100644 --- a/puppy.nimble +++ b/puppy.nimble @@ -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" diff --git a/tests/debug_server.nim b/tests/debug_server.nim index c25a582..179837b 100644 --- a/tests/debug_server.nim +++ b/tests/debug_server.nim @@ -1,4 +1,4 @@ -import asyncdispatch, asynchttpserver, uri, urlly, zippy +import asyncdispatch, asynchttpserver, uri, webby, zippy let server = newAsyncHttpServer()