ObjFW  Check-in [287bdae617]

Overview
Comment:Set version to 1.0.2
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.0 | 1.0.2-release
Files: files | file ages | folders
SHA3-256: 287bdae6171d1f188fc277bba56282263f60e2a223505860b986eb3a1d742138
User & Date: js on 2023-09-10 23:46:29
Other Links: branch diff | manifest | tags
Context
2023-09-14
19:11
Merge trunk into 1.0 branch check-in: cd3c6c1274 user: js tags: 1.0
2023-09-10
23:46
Set version to 1.0.2 check-in: 287bdae617 user: js tags: 1.0, 1.0.2-release
23:45
Merge trunk into 1.0 branch check-in: f85d18493a user: js tags: 1.0
Changes

Modified configure.ac from [2e69fe008c] to [bc29ece19f].

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