Skip to content

Commit 0fae8a8

Browse files
committed
Release 1.0.5
A lot of changes since the last release, time to do a new one! I bumped the lib version minor since we have added new APIs. Signed-off-by: Colin Walters <[email protected]>
1 parent 9bdc377 commit 0fae8a8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.69])
2-
AC_INIT([composefs], [1.0.4], [[email protected]])
2+
AC_INIT([composefs], [1.0.5], [[email protected]])
33
AC_CONFIG_SRCDIR([tools/mkcomposefs.c])
44
AC_CONFIG_HEADERS([config.h])
55
AC_SYS_LARGEFILE
@@ -21,7 +21,7 @@ AC_SYS_LARGEFILE
2121
# (And never do that lightly)
2222

2323
m4_define([LIBCOMPOSEFS_VERSION_MAJOR], [1])
24-
m4_define([LIBCOMPOSEFS_VERSION_MINOR], [2])
24+
m4_define([LIBCOMPOSEFS_VERSION_MINOR], [3])
2525
m4_define([LIBCOMPOSEFS_VERSION_MICRO], [0])
2626

2727
LT_PREREQ([2.2.6])

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'composefs',
33
'c',
4-
version : '1.0.4',
4+
version : '1.0.5',
55
default_options : [
66
'c_std=c99',
77
'warning_level=1',
@@ -11,7 +11,7 @@ project(
1111
pkg = import('pkgconfig')
1212

1313
libcomposefs_version_major = 1
14-
libcomposefs_version_minor = 2
14+
libcomposefs_version_minor = 3
1515
libcomposefs_version_micro = 0
1616
libversion = '@0@.@1@.@2@'.format(libcomposefs_version_major, libcomposefs_version_minor, libcomposefs_version_micro)
1717
soversion = libcomposefs_version_major

0 commit comments

Comments
 (0)