From 156fc2ce4014a77a13e4598a30db46041cfd2d09 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 13 Sep 2024 10:12:00 -0400 Subject: [PATCH] Release 1.0.5 The main feature in this release is we ran honggfuzz and fixed a *lot* of bugs from that. These were all boundary conditions (extremely long symlinks, enormous files) and I am not aware of anyone hitting them in practice. Signed-off-by: Colin Walters --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index f1aaeec..0bb0461 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'composefs', 'c', - version : '1.0.5', + version : '1.0.6', default_options : [ 'c_std=c99', 'warning_level=1', @@ -11,7 +11,7 @@ project( pkg = import('pkgconfig') libcomposefs_version_major = 1 -libcomposefs_version_minor = 3 +libcomposefs_version_minor = 4 libcomposefs_version_micro = 0 libversion = '@0@.@1@.@2@'.format(libcomposefs_version_major, libcomposefs_version_minor, libcomposefs_version_micro) soversion = libcomposefs_version_major