Skip to content

Commit

Permalink
Bumping version number to 4.0 beta6
Browse files Browse the repository at this point in the history
  • Loading branch information
fsundermeyer committed Sep 17, 2024
1 parent 60804ad commit c1990f4
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 17 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Tue Sep 17 14:24:39 UTC 2024 - Frank Sundermeyer <fs@suse.com>

Beta release DAPS 4.0 beta6

* Enhancement:
- subcommand metadata now also prints out the rootid

-------------------------------------------------------------------
Tue Sep 10 16:52:27 UTC 2024 - Frank Sundermeyer <fs@suse.com>

Expand Down
28 changes: 14 additions & 14 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.72 for DAPS 4.0.beta5.
# Generated by GNU Autoconf 2.72 for DAPS 4.0.beta6.
#
# Report bugs to <https://github.com/openSUSE/daps>.
#
Expand Down Expand Up @@ -604,8 +604,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='DAPS'
PACKAGE_TARNAME='daps'
PACKAGE_VERSION='4.0.beta5'
PACKAGE_STRING='DAPS 4.0.beta5'
PACKAGE_VERSION='4.0.beta6'
PACKAGE_STRING='DAPS 4.0.beta6'
PACKAGE_BUGREPORT='https://github.com/openSUSE/daps'
PACKAGE_URL='https://opensuse.github.io/daps'

Expand Down Expand Up @@ -1310,7 +1310,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 DAPS 4.0.beta5 to adapt to many kinds of systems.
'configure' configures DAPS 4.0.beta6 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1377,7 +1377,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of DAPS 4.0.beta5:";;
short | recursive ) echo "Configuration of DAPS 4.0.beta6:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1476,7 +1476,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
DAPS configure 4.0.beta5
DAPS configure 4.0.beta6
generated by GNU Autoconf 2.72
Copyright (C) 2023 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1513,7 +1513,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 DAPS $as_me 4.0.beta5, which was
It was created by DAPS $as_me 4.0.beta6, which was
generated by GNU Autoconf 2.72. Invocation command line was
$ $0$ac_configure_args_raw
Expand Down Expand Up @@ -1956,8 +1956,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu

DAPS_VERSION_MAJOR=4
DAPS_VERSION_MINOR=0
DAPS_VERSION_MICRO=beta5
DAPS_VERSION=4.0.beta5
DAPS_VERSION_MICRO=beta6
DAPS_VERSION=4.0.beta6
DAPS_API_VERSION=4


Expand Down Expand Up @@ -2704,7 +2704,7 @@ fi

# Define the identity of the package.
PACKAGE='daps'
VERSION='4.0.beta5'
VERSION='4.0.beta6'


printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
Expand Down Expand Up @@ -5452,7 +5452,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 DAPS $as_me 4.0.beta5, which was
This file was extended by DAPS $as_me 4.0.beta6, which was
generated by GNU Autoconf 2.72. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -5508,7 +5508,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
DAPS config.status 4.0.beta5
DAPS config.status 4.0.beta6
configured by $0, generated by GNU Autoconf 2.72,
with options \\"\$ac_cs_config\\"
Expand Down Expand Up @@ -6673,7 +6673,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 DAPS $as_me 4.0.beta5, which was
This file was extended by DAPS $as_me 4.0.beta6, which was
generated by GNU Autoconf 2.72. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -6729,7 +6729,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
DAPS config.status 4.0.beta5
DAPS config.status 4.0.beta6
configured by $0, generated by GNU Autoconf 2.72,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dnl

m4_define(daps_version_major, 4)
m4_define(daps_version_minor, 0)
m4_define(daps_version_micro, [beta5])
m4_define(daps_version_micro, [beta6])

# API version
m4_define([daps_api_version],[daps_version_major])
Expand Down
4 changes: 2 additions & 2 deletions packaging/daps.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@


Name: daps
Version: 4.0~beta5
Version: 4.0~beta6
Release: 0

%define pkg_version 4.0beta5
%define pkg_version 4.0beta6
%define docbuilddir %{_datadir}/daps

Summary: DocBook Authoring and Publishing Suite
Expand Down

0 comments on commit c1990f4

Please sign in to comment.