summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2022-08-20 17:47:43 +0200
committerGravatar Vincent Rischmann2022-08-20 17:47:43 +0200
commit57fe7af4392a08940c53b7396b880252f029cbfa (patch)
tree41566759ad64b65166a9df33cb64e90215811ba5
parent`addPackage` is redundant (diff)
downloadzig-sqlite-57fe7af4392a08940c53b7396b880252f029cbfa.tar.gz
zig-sqlite-57fe7af4392a08940c53b7396b880252f029cbfa.tar.xz
zig-sqlite-57fe7af4392a08940c53b7396b880252f029cbfa.zip
readme: clearly document which Zig version is supported
Diffstat (limited to '')
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 06822b5..368b834 100644
--- a/README.md
+++ b/README.md
@@ -8,6 +8,14 @@ While the core functionality works right now, the API is still subject to change
8 8
9If you use this library, expect to have to make changes when you update the code. 9If you use this library, expect to have to make changes when you update the code.
10 10
11# Zig release support
12
13`zig-sqlite` only supports Zig master (as can be found [here](https://ziglang.org/download/)). The plan is to support releases once Zig 1.0 is released but this can still change.
14
15The Zig self-hosted/stage2 compiler is now [the default](https://github.com/ziglang/zig/pull/12368) however currently it can't be used with `zig-sqlite` due to bugs.
16
17Eventually `zig-sqlite` will only support stage2 but until a point I feel comfortable doing that, the `master` branch will stay compatible with stage1 and all work for stage2 will happen in the `stage2` branch.
18
11# Table of contents 19# Table of contents
12 20
13* [Status](#status) 21* [Status](#status)