diff --git a/README.md b/README.md index b829391..4a6df5b 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ _Zollections_ is a collections library for Zig. It's made to ease memory managem ## Versions -Zollections 0.1.0 is made and tested with zig 0.13.0. +Zollections 0.1.1 is made and tested with zig 0.13.0. ## How to use @@ -37,7 +37,7 @@ Zollections 0.1.0 is made and tested with zig 0.13.0. In your project directory: ```shell -$ zig fetch --save https://code.zeptotech.net/zedd/zollections/archive/v0.1.0.tar.gz +$ zig fetch --save https://code.zeptotech.net/zedd/zollections/archive/v0.1.1.tar.gz ``` In `build.zig`: diff --git a/build.zig.zon b/build.zig.zon index eb6cccb..2dd63d2 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = "zollections", - .version = "0.1.0", + .version = "0.1.1", .minimum_zig_version = "0.13.0", @@ -11,5 +11,7 @@ "build.zig", "build.zig.zon", "src", + "README.md", + "LICENSE", }, }