ObjFW  Check-in [612a0bd5b4]

Overview
Comment:Set version to 1.0.9
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.0 | 1.0.9-release
Files: files | file ages | folders
SHA3-256: 612a0bd5b4a7515c061887d6928a6d0911395b586981953803ec9126191df92f
User & Date: js on 2024-02-18 14:09:13
Other Links: branch diff | manifest | tags
Context
2024-02-20
01:59
ofarc: Minor help fix check-in: 81cfa33fdf user: js tags: 1.0
2024-02-18
14:09
Set version to 1.0.9 check-in: 612a0bd5b4 user: js tags: 1.0, 1.0.9-release
14:08
Increase patch level for ObjFW library check-in: f15739af64 user: js tags: 1.0
Changes

Modified configure.ac from [b1067aca91] to [a7a76345b3].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
AC_INIT(ObjFW, 1.0.8, js@nil.im, objfw, https://objfw.nil.im/)
AC_CONFIG_SRCDIR(src)
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_MACRO_DIR(build-aux/m4)

AC_DEFINE(OBJFW_VERSION_MAJOR, 1, [The major version of ObjFW])
AC_DEFINE(OBJFW_VERSION_MINOR, 0, [The minor version of ObjFW])
AC_SUBST(BUNDLE_VERSION, 1.0.8)
AC_SUBST(BUNDLE_SHORT_VERSION, 1.0)

for i in configure.ac build-aux/m4/*; do
	AS_IF([test $i -nt configure], [
		AC_MSG_ERROR([$i is newer than configure! Run ./autogen.sh!])
	])
done
|






|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
AC_INIT(ObjFW, 1.0.9, js@nil.im, objfw, https://objfw.nil.im/)
AC_CONFIG_SRCDIR(src)
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_MACRO_DIR(build-aux/m4)

AC_DEFINE(OBJFW_VERSION_MAJOR, 1, [The major version of ObjFW])
AC_DEFINE(OBJFW_VERSION_MINOR, 0, [The minor version of ObjFW])
AC_SUBST(BUNDLE_VERSION, 1.0.9)
AC_SUBST(BUNDLE_SHORT_VERSION, 1.0)

for i in configure.ac build-aux/m4/*; do
	AS_IF([test $i -nt configure], [
		AC_MSG_ERROR([$i is newer than configure! Run ./autogen.sh!])
	])
done