|

release: bump to 0.1.3 (visual pass)

release: bump to 0.1.3 (visual pass)

Version bump 0.1.2 → 0.1.3. Also adds ZYGINIT_NO_UI=1 to the
integration test harness to force plain daemon output and keep
captured test assertions free of ANSI escapes.
Author: Chris Tusa <chris.tusa@leafscale.com>
Date: May 12, 2026 19:58
Changeset: 0ca51de1592cbd5f61a352df49eff255a44e6bc6
Branch: default
Tags: v0.1.3

Diff

diff -r 7c6bdb2d8b0f -r 0ca51de1592c reef.toml
--- a/reef.toml	Tue May 12 19:52:18 2026 -0500
+++ b/reef.toml	Tue May 12 19:58:33 2026 -0500
@@ -1,6 +1,6 @@
 [package]
 name = "zyginit"
-version = "0.1.2"
+version = "0.1.3"
 author = "Chris Tusa <chris.tusa@leafscale.com>"
 description = "Init system and service supervisor for Zygaena/Hammerhead"
 license = "CDDL-1.0"
diff -r 7c6bdb2d8b0f -r 0ca51de1592c src/version.reef
--- a/src/version.reef	Tue May 12 19:52:18 2026 -0500
+++ b/src/version.reef	Tue May 12 19:58:33 2026 -0500
@@ -23,7 +23,7 @@
 end export
 
 fn VERSION(): string
-    return "0.1.2"
+    return "0.1.3"
 end VERSION
 
 end module
diff -r 7c6bdb2d8b0f -r 0ca51de1592c tests/integration/run_tests.sh
--- a/tests/integration/run_tests.sh	Tue May 12 19:52:18 2026 -0500
+++ b/tests/integration/run_tests.sh	Tue May 12 19:58:33 2026 -0500
@@ -38,6 +38,10 @@
 export ZYGINIT_SOCKET="$SOCKET"
 export ZYGINIT_LOG_DIR="$LOG_DIR"
 export ZYGINIT_RUN_DIR="$RUN_DIR"
+# Force the daemon into plain mode regardless of TTY state — keeps
+# integration test diffs stable and prevents ANSI escapes from
+# polluting captured assertions.
+export ZYGINIT_NO_UI=1
 
 PASS=0
 FAIL=0
diff -r 7c6bdb2d8b0f -r 0ca51de1592c tools/sysv-wrapper/version.h
--- a/tools/sysv-wrapper/version.h	Tue May 12 19:52:18 2026 -0500
+++ b/tools/sysv-wrapper/version.h	Tue May 12 19:58:33 2026 -0500
@@ -18,5 +18,5 @@
 
 #ifndef ZYGINIT_VERSION_H
 #define ZYGINIT_VERSION_H
-#define ZYGINIT_VERSION "0.1.2"
+#define ZYGINIT_VERSION "0.1.3"
 #endif
diff -r 7c6bdb2d8b0f -r 0ca51de1592c tools/zygctl/reef.toml
--- a/tools/zygctl/reef.toml	Tue May 12 19:52:18 2026 -0500
+++ b/tools/zygctl/reef.toml	Tue May 12 19:58:33 2026 -0500
@@ -1,6 +1,6 @@
 [package]
 name = "zygctl"
-version = "0.1.2"
+version = "0.1.3"
 author = "Chris Tusa <chris.tusa@leafscale.com>"
 description = "Administrative CLI for zyginit"
 license = "CDDL-1.0"
diff -r 7c6bdb2d8b0f -r 0ca51de1592c tools/zygctl/src/version.reef
--- a/tools/zygctl/src/version.reef	Tue May 12 19:52:18 2026 -0500
+++ b/tools/zygctl/src/version.reef	Tue May 12 19:58:33 2026 -0500
@@ -23,7 +23,7 @@
 end export
 
 fn VERSION(): string
-    return "0.1.2"
+    return "0.1.3"
 end VERSION
 
 end module