From fbb45f156727d6b6bf71f98845dc87e1133620d6 Mon Sep 17 00:00:00 2001 From: torque Date: Mon, 14 Aug 2023 22:46:44 -0700 Subject: [PATCH] readme: add some notes about zig version support --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 76763fb..762bb22 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,10 @@ There are three main goals: Right now, in service of goal 3, the underlying C library is built without certain features (notably, without TLS support and without streaming support) because those features require wrangling some complex transitive dependencies (OpenSSL and Protocol Buffers, respectively). Solving this limitation is somewhere on the roadmap, but it's not high priority. +# Zig Version Support + +Since the language is still under active development, any written Zig code is a moving target. The plan is to support Zig `0.11.*` exclusively until the NATS library API has good coverage and is stabilized. At that point, if there are major breaking changes, a maintenance branch will be created, and master will probably move to track Zig master. + # Building Currently, a demonstration executable can be built in the standard fashion, i.e. by running `zig build`.