From a42b9453b4d6f2144229977fffaeef5752d589d6 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Mon, 29 Jan 2024 10:40:35 +0100 Subject: [PATCH] Bump version to 1.0.3 Changes since 1.0.2: * Image format version 1 was added that allows storing overlay whiteouts in a composefs image. * libcomposefs added max_version option * mkcomposefs added --version and --max-version options * composefs can now be build without go-md2man * Minor bugfix handling file read errors Signed-off-by: Alexander Larsson --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 25ab5c74..51439317 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.69]) -AC_INIT([composefs], [1.0.2], [giuseppe@scrivano.org]) +AC_INIT([composefs], [1.0.3], [giuseppe@scrivano.org]) AC_CONFIG_SRCDIR([tools/mkcomposefs.c]) AC_CONFIG_HEADERS([config.h]) AC_SYS_LARGEFILE @@ -21,8 +21,8 @@ AC_SYS_LARGEFILE # (And never do that lightly) m4_define([LIBCOMPOSEFS_VERSION_MAJOR], [1]) -m4_define([LIBCOMPOSEFS_VERSION_MINOR], [0]) -m4_define([LIBCOMPOSEFS_VERSION_MICRO], [1]) +m4_define([LIBCOMPOSEFS_VERSION_MINOR], [1]) +m4_define([LIBCOMPOSEFS_VERSION_MICRO], [0]) LT_PREREQ([2.2.6]) LT_INIT()