Skip to content

Commit

Permalink
Merge pull request #312 from cgwalters/release
Browse files Browse the repository at this point in the history
Release 1.0.5
  • Loading branch information
cgwalters committed Aug 16, 2024
2 parents 9bdc377 + 0fae8a8 commit 098d985
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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.4], [giuseppe@scrivano.org])
AC_INIT([composefs], [1.0.5], [giuseppe@scrivano.org])
AC_CONFIG_SRCDIR([tools/mkcomposefs.c])
AC_CONFIG_HEADERS([config.h])
AC_SYS_LARGEFILE
Expand All @@ -21,7 +21,7 @@ AC_SYS_LARGEFILE
# (And never do that lightly)

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

LT_PREREQ([2.2.6])
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'composefs',
'c',
version : '1.0.4',
version : '1.0.5',
default_options : [
'c_std=c99',
'warning_level=1',
Expand All @@ -11,7 +11,7 @@ project(
pkg = import('pkgconfig')

libcomposefs_version_major = 1
libcomposefs_version_minor = 2
libcomposefs_version_minor = 3
libcomposefs_version_micro = 0
libversion = '@0@.@1@.@2@'.format(libcomposefs_version_major, libcomposefs_version_minor, libcomposefs_version_micro)
soversion = libcomposefs_version_major
Expand Down

0 comments on commit 098d985

Please sign in to comment.