1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-02-21 19:48:29 +02:00

Begin v2.45 development.

This commit is contained in:
David Steele 2023-01-30 09:27:04 +07:00
parent 053468bfb1
commit 240312110c
6 changed files with 21 additions and 13 deletions

View File

@ -1,4 +1,9 @@
[
{
"commit": "053468bfb156a8ecbd5d0325d35141056c89ec52",
"date": "2023-01-30 09:15:44 +0700",
"subject": "v2.44: Remove PostgreSQL 9.0/9.1/9.2 Support"
},
{
"commit": "a28f3d49c23d7dbd8873d07b7d513b6b7e59345a",
"date": "2023-01-28 18:55:53 +0700",

View File

@ -14,6 +14,9 @@
</intro>
<release-list>
<release date="XXXX-XX-XX" version="2.45dev" title="UNDER DEVELOPMENT">
</release>
<release date="2023-01-30" version="2.44" title="Remove PostgreSQL 9.0/9.1/9.2 Support">
<release-core-list>
<release-improvement-list>

View File

@ -4,7 +4,7 @@
project(
'pgbackrest',
['c'],
version: '2.44',
version: '2.45dev',
license: 'MIT',
meson_version: '>=0.45',
default_options: [

View File

@ -1,7 +1,7 @@
# Initialize configuration
# ----------------------------------------------------------------------------------------------------------------------------------
AC_PREREQ([2.71])
AC_INIT([pgBackRest], [2.44])
AC_INIT([pgBackRest], [2.45dev])
AC_CONFIG_SRCDIR([version.h])
AC_CONFIG_AUX_DIR(build)

20
src/configure vendored
View File

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.71 for pgBackRest 2.44.
# Generated by GNU Autoconf 2.71 for pgBackRest 2.45dev.
#
#
# Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
@ -607,8 +607,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='pgBackRest'
PACKAGE_TARNAME='pgbackrest'
PACKAGE_VERSION='2.44'
PACKAGE_STRING='pgBackRest 2.44'
PACKAGE_VERSION='2.45dev'
PACKAGE_STRING='pgBackRest 2.45dev'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''
@ -1272,7 +1272,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 pgBackRest 2.44 to adapt to many kinds of systems.
\`configure' configures pgBackRest 2.45dev to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1319,7 +1319,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of pgBackRest 2.44:";;
short | recursive ) echo "Configuration of pgBackRest 2.45dev:";;
esac
cat <<\_ACEOF
@ -1414,7 +1414,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
pgBackRest configure 2.44
pgBackRest configure 2.45dev
generated by GNU Autoconf 2.71
Copyright (C) 2021 Free Software Foundation, Inc.
@ -1570,7 +1570,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 pgBackRest $as_me 2.44, which was
It was created by pgBackRest $as_me 2.45dev, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
@ -4831,7 +4831,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 pgBackRest $as_me 2.44, which was
This file was extended by pgBackRest $as_me 2.45dev, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -4895,7 +4895,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="\\
pgBackRest config.status 2.44
pgBackRest config.status 2.45dev
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"
@ -5599,4 +5599,4 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
fi
# Generated from src/build/configure.ac sha1 f01d8e72d5254be64119471b26912aabb1aaa38d
# Generated from src/build/configure.ac sha1 f180ae6379fa92a66480a5570d4876a2fb4c9d11

View File

@ -33,6 +33,6 @@ repository will be invalid unless migration functions are written.
/***********************************************************************************************************************************
Software version
***********************************************************************************************************************************/
#define PROJECT_VERSION "2.44"
#define PROJECT_VERSION "2.45dev"
#endif