diff options
| author | 2024-12-13 15:19:20 -0500 | |
|---|---|---|
| committer | 2024-12-13 15:19:20 -0500 | |
| commit | a363f507fc39b96fc48d693665a823a358345326 (patch) | |
| tree | 7ac676deb45f6b30089a81d454aaf398c3f4c50a | |
| parent | Merge pull request 'Fix leak of cwcf_exceptions in FoldData' (#21) from squee... (diff) | |
| download | zg-a363f507fc39b96fc48d693665a823a358345326.tar.gz zg-a363f507fc39b96fc48d693665a823a358345326.tar.xz zg-a363f507fc39b96fc48d693665a823a358345326.zip | |
README + zon update v0.13.4v0.13.4
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | build.zig.zon | 10 |
2 files changed, 6 insertions, 6 deletions
| @@ -16,7 +16,7 @@ You first need to add zg as a dependency in your `build.zig.zon` file. In your | |||
| 16 | Zig project's root directory, run: | 16 | Zig project's root directory, run: |
| 17 | 17 | ||
| 18 | ```plain | 18 | ```plain |
| 19 | zig fetch --save https://codeberg.org/atman/zg/archive/v0.13.3.tar.gz | 19 | zig fetch --save https://codeberg.org/atman/zg/archive/v0.13.4.tar.gz |
| 20 | ``` | 20 | ``` |
| 21 | 21 | ||
| 22 | Then instantiate the dependency in your `build.zig`: | 22 | Then instantiate the dependency in your `build.zig`: |
diff --git a/build.zig.zon b/build.zig.zon index 60052aa..f37e8b1 100644 --- a/build.zig.zon +++ b/build.zig.zon | |||
| @@ -1,17 +1,17 @@ | |||
| 1 | .{ | 1 | .{ |
| 2 | .name = "zg", | 2 | .name = "zg", |
| 3 | .version = "0.13.1", | 3 | .version = "0.13.4", |
| 4 | .minimum_zig_version = "0.13.0", | 4 | .minimum_zig_version = "0.13.0", |
| 5 | 5 | ||
| 6 | .paths = .{ | 6 | .paths = .{ |
| 7 | "build.zig", | 7 | "build.zig", |
| 8 | "build.zig.zon", | 8 | "build.zig.zon", |
| 9 | "codegen", | 9 | "codegen", |
| 10 | "data", | 10 | "data", |
| 11 | "LICENSE", | 11 | "LICENSE", |
| 12 | "README.md", | 12 | "README.md", |
| 13 | "src", | 13 | "src", |
| 14 | "unicode_license", | 14 | "unicode_license", |
| 15 | "UNICODE_VERSION.txt", | 15 | "UNICODE_VERSION.txt", |
| 16 | }, | 16 | }, |
| 17 | } | 17 | } |