Skip to content

Commit

Permalink
Bump version to 1.0.1
Browse files Browse the repository at this point in the history
Changes since 1.0.0:

* mkcomposefs now supports --from-file which reads image descriptions
  in the format of `composefs-info dump` output.
* composefs-info dump output now shows content and hardlink target
* mount.composefs now uses the new mount api on recent kernels, which
  fixes a regression in escaping commas in upperdir/lowerdir/workdir
  options.
* lcfs_node_set_payload() now accepts NULL to unset
* Some performance improvements
* Fixed errors in error reporting
* Added more manpages

Signed-off-by: Alexander Larsson <[email protected]>
  • Loading branch information
alexlarsson committed Oct 13, 2023
1 parent 8bcc5c2 commit 51cba63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
AC_INIT([composefs], [1.0.0], [[email protected]])
AC_INIT([composefs], [1.0.1], [[email protected]])
AC_CONFIG_SRCDIR([tools/mkcomposefs.c])
AC_CONFIG_HEADERS([config.h])
AC_SYS_LARGEFILE
Expand All @@ -22,7 +22,7 @@ AC_SYS_LARGEFILE

m4_define([LIBCOMPOSEFS_VERSION_MAJOR], [1])
m4_define([LIBCOMPOSEFS_VERSION_MINOR], [0])
m4_define([LIBCOMPOSEFS_VERSION_MICRO], [0])
m4_define([LIBCOMPOSEFS_VERSION_MICRO], [1])

LT_PREREQ([2.2.6])
LT_INIT()
Expand Down

0 comments on commit 51cba63

Please sign in to comment.