From 3826058062202c0c357babdcccdeb5a14095b9cc Mon Sep 17 00:00:00 2001 From: Madeorsk Date: Fri, 18 Oct 2024 15:11:48 +0200 Subject: [PATCH] Version 0.1.1 --- README.md | 4 ++-- build.zig.zon | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1affadb..1169ecf 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ _Zouter_ is an HTTP router library for Zig **zap** HTTP server. It's made to eas ## Versions -Zouter 0.1.0 is made for zig 0.13.0 and tested with zap 0.8.0. +Zouter 0.1.1 is made for zig 0.13.0 and tested with zap 0.8.0. ## How to use @@ -37,7 +37,7 @@ Zouter 0.1.0 is made for zig 0.13.0 and tested with zap 0.8.0. In your project directory: ```shell -$ zig fetch --save https://code.zeptotech.net/zedd/zouter/archive/v0.1.0.tar.gz +$ zig fetch --save https://code.zeptotech.net/zedd/zouter/archive/v0.1.1.tar.gz ``` In `build.zig`: diff --git a/build.zig.zon b/build.zig.zon index e1eea83..c81dd38 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = "zouter", - .version = "0.1.0", + .version = "0.1.1", .minimum_zig_version = "0.13.0", .dependencies = .{ @@ -14,5 +14,7 @@ "build.zig", "build.zig.zon", "src", + "README.md", + "LICENSE", }, }