aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md5
-rw-r--r--flake.nix2
-rw-r--r--src/version.h2
-rw-r--r--tests/111.sh2
4 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..06e7783
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,5 @@
+# Changelog
+
+## v0.2.0 (2025-09-03)
+
+Ducc can process glibc's `stdio.h` now. A typical hello world compiles! See `examples/hello.c`.
diff --git a/flake.nix b/flake.nix
index 5952538..8cbc8ec 100644
--- a/flake.nix
+++ b/flake.nix
@@ -34,7 +34,7 @@
{
packages.default = pkgs.stdenv.mkDerivation {
pname = "ducc";
- version = "0.1.0";
+ version = "0.2.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 8f8b201..3013430 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.1.0"
+#define DUCC_VERSION "0.2.0"
#endif
diff --git a/tests/111.sh b/tests/111.sh
index 9f500fd..5b21831 100644
--- a/tests/111.sh
+++ b/tests/111.sh
@@ -1,4 +1,4 @@
-expected="ducc v0.1.0"
+expected="ducc v0.2.0"
if [[ "$("$ducc" --version)" != "$expected" ]]; then
echo "invalid output" >&2