ObjFW  Check-in [d43df2354c]

Overview
Comment:Set version to 1.0.12
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.0 | 1.0.12-release
Files: files | file ages | folders
SHA3-256: d43df2354c058de701bb6d7d229864a1a44068a77b8f1b65cfad71cdea46ebc1
User & Date: js on 2024-03-11 20:44:37
Other Links: branch diff | manifest | tags
Context
2024-03-17
13:23
README.md: Update MSYS2 and remove leading $ check-in: 9cd9c88ab4 user: js tags: 1.0
2024-03-11
20:44
Set version to 1.0.12 check-in: d43df2354c user: js tags: 1.0, 1.0.12-release
20:44
Increase patch level for ObjFW library check-in: 34c1ffbca2 user: js tags: 1.0
Changes

Modified configure.ac from [352f4358b3] to [160237facd].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
AC_INIT(ObjFW, 1.0.11, 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.11)
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.12, 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.12)
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