From 5a1789c2de30ec503e488ca77d664199a545a04a Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 7 Feb 2026 19:14:49 +0900 Subject: feat: bump to v0.4.0 --- CHANGELOG.md | 5 +++++ flake.nix | 2 +- src/version.h | 2 +- tests/cli.sh | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d163b1..924e212 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.4.0 (2026-02-07) + +Now, ducc can compile [Lua 5.5](https://www.lua.org/source/5.5/)! The artifact binary crashes though. + + ## v0.3.0 (2026-01-08) WebAssembly backend is experimentally added. For now, very limited operations are supported. diff --git a/flake.nix b/flake.nix index f2b9345..866c8d1 100644 --- a/flake.nix +++ b/flake.nix @@ -34,7 +34,7 @@ { packages.default = pkgs.stdenv.mkDerivation { pname = "ducc"; - version = "0.3.0"; + version = "0.4.0"; src = ./.; # Disable some kinds of hardening to disable GCC optimization. # cf. https://nixos.wiki/wiki/C#Hardening_flags diff --git a/src/version.h b/src/version.h index 5ca952a..67c2352 100644 --- a/src/version.h +++ b/src/version.h @@ -1,6 +1,6 @@ #ifndef DUCC_VERSION_H #define DUCC_VERSION_H -#define DUCC_VERSION "0.3.0" +#define DUCC_VERSION "0.4.0" #endif diff --git a/tests/cli.sh b/tests/cli.sh index 2c6ac72..4f8fe24 100644 --- a/tests/cli.sh +++ b/tests/cli.sh @@ -1,5 +1,5 @@ # --version -expected="ducc v0.3.0" +expected="ducc v0.4.0" if [[ "$("$ducc" --version)" != "$expected" ]]; then echo "invalid output" >&2 -- cgit v1.3-1-g0d28