From 3d666b538098e7b9744e17669c389b822ce8c979 Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Thu, 3 Feb 2022 07:59:20 -0700 Subject: [PATCH] configure: set version numbers for releases only Let's set the version for releases only and set the development/main branch version to 0.0.0, that differentiate between development and releases. Suggested-by: Tom Hromatka Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index ebfd90a4..1b45fc1c 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ AC_PREREQ([2.69]) # In following section update all occurences of version, including soname -AC_INIT([libcgroup],[2.0]) +AC_INIT([libcgroup],[0.0.0]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIRS([m4]) @@ -25,9 +25,9 @@ AM_INIT_AUTOMAKE([foreign dist-bzip2 subdir-objects]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) # set library version, soname is libcgroup.so.MAJOR -AC_SUBST(LIBRARY_VERSION_MAJOR, 1) +AC_SUBST(LIBRARY_VERSION_MAJOR, 0) AC_SUBST(LIBRARY_VERSION_MINOR, 0) -AC_SUBST(LIBRARY_VERSION_RELEASE, 42) +AC_SUBST(LIBRARY_VERSION_RELEASE, 0) # we do not want static libraries #AC_DISABLE_STATIC -- 2.47.2