raised the version to 0.9.0 and put 0.8.X in the maintenance mode

This commit is contained in:
hyung-hwan 2022-03-23 07:10:51 +00:00
parent 3c0ea06f64
commit fa39343d6c
3 changed files with 15 additions and 15 deletions

20
qse/configure vendored
View File

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for qse 0.8.5.
# Generated by GNU Autoconf 2.69 for qse 0.9.0.
#
# Report bugs to <Chung, Hyung-Hwan (hyunghwan.chung@gmail.com)>.
#
@ -590,8 +590,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='qse'
PACKAGE_TARNAME='qse'
PACKAGE_VERSION='0.8.5'
PACKAGE_STRING='qse 0.8.5'
PACKAGE_VERSION='0.9.0'
PACKAGE_STRING='qse 0.9.0'
PACKAGE_BUGREPORT='Chung, Hyung-Hwan (hyunghwan.chung@gmail.com)'
PACKAGE_URL='http://code.miflux.com/@qse'
@ -1411,7 +1411,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures qse 0.8.5 to adapt to many kinds of systems.
\`configure' configures qse 0.9.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1482,7 +1482,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of qse 0.8.5:";;
short | recursive ) echo "Configuration of qse 0.9.0:";;
esac
cat <<\_ACEOF
@ -1625,7 +1625,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
qse configure 0.8.5
qse configure 0.9.0
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@ -2409,7 +2409,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by qse $as_me 0.8.5, which was
It was created by qse $as_me 0.9.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@ -3284,7 +3284,7 @@ fi
# Define the identity of the package.
PACKAGE='qse'
VERSION='0.8.5'
VERSION='0.9.0'
cat >>confdefs.h <<_ACEOF
@ -25837,7 +25837,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by qse $as_me 0.8.5, which was
This file was extended by qse $as_me 0.9.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -25904,7 +25904,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
qse config.status 0.8.5
qse config.status 0.9.0
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

View File

@ -1,10 +1,10 @@
dnl AC_PREREQ([2.67])
dnl Make sure you change the version information
dnl in include/qse/conf_*.h whenever you change the version
dnl here. Those files don't depend on autoconf, thus requiring
dnl in include/qse/conf-inf.h whenever you change the version
dnl here. The file doesn't depend on autoconf, thus requiring
dnl manual change.
AC_INIT([qse],[0.8.5],[Chung, Hyung-Hwan (hyunghwan.chung@gmail.com)],[],[http://code.miflux.com/@qse])
AC_INIT([qse],[0.9.0],[Chung, Hyung-Hwan (hyunghwan.chung@gmail.com)],[],[http://code.miflux.com/@qse])
AC_CONFIG_HEADER([include/qse/config.h])
AC_CONFIG_AUX_DIR([ac])

View File

@ -4,9 +4,9 @@
/* This file is used for non-autoconf based build systems.
* Change this information whenever you update package version in configure.ac */
#define QSE_PACKAGE_VERSION "0.6.0"
#define QSE_PACKAGE_VERSION "0.9.0"
#define QSE_PACKAGE_VERSION_MAJOR 0
#define QSE_PACKAGE_VERSION_MINOR 6
#define QSE_PACKAGE_VERSION_MINOR 9
#define QSE_PACKAGE_VERSION_PATCH 0
#endif