diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-07 19:14:49 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-07 19:14:49 +0900 |
| commit | 5a1789c2de30ec503e488ca77d664199a545a04a (patch) | |
| tree | 5a7ec55b335108733234b01892df65a0df6d6cc6 | |
| parent | 3752b69fe3424b949bcb61c222265ee6a435c994 (diff) | |
| download | ducc-5a1789c2de30ec503e488ca77d664199a545a04a.tar.gz ducc-5a1789c2de30ec503e488ca77d664199a545a04a.tar.zst ducc-5a1789c2de30ec503e488ca77d664199a545a04a.zip | |
feat: bump to v0.4.0v0.4.0
| -rw-r--r-- | CHANGELOG.md | 5 | ||||
| -rw-r--r-- | flake.nix | 2 | ||||
| -rw-r--r-- | src/version.h | 2 | ||||
| -rw-r--r-- | 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. @@ -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 |
