1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-02-03 13:21:32 +02:00

Begin v2.50 development.

This commit is contained in:
David Steele 2023-11-27 09:06:53 -03:00
parent 3cb891e3ca
commit 85bc9f27d8
7 changed files with 22 additions and 13 deletions

View File

@ -1,4 +1,9 @@
[
{
"commit": "3cb891e3ca49ed1166fb0b513b126412448f5b09",
"date": "2023-11-27 08:55:56 -0300",
"subject": "v2.49: Remove PostgreSQL 9.3 Support"
},
{
"commit": "7d51228bf5227494bf50327488032221bd3d30fa",
"date": "2023-11-24 17:07:49 -0300",

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE doc SYSTEM "doc.dtd" [
<!ENTITY v2.50 SYSTEM "release/2024/2.50.xml">
<!ENTITY v2.49 SYSTEM "release/2023/2.49.xml">
<!ENTITY v2.48 SYSTEM "release/2023/2.48.xml">
<!ENTITY v2.47 SYSTEM "release/2023/2.47.xml">
@ -120,6 +121,7 @@
</intro>
<release-list>
&v2.50;
&v2.49;
&v2.48;
&v2.47;

View File

@ -0,0 +1,2 @@
<release date="XXXX-XX-XX" version="2.50dev" title="Under Development">
</release>

View File

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

View File

@ -1,7 +1,7 @@
# Initialize configuration
# ----------------------------------------------------------------------------------------------------------------------------------
AC_PREREQ([2.71])
AC_INIT([pgBackRest], [2.49])
AC_INIT([pgBackRest], [2.50dev])
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.49.
# Generated by GNU Autoconf 2.71 for pgBackRest 2.50dev.
#
#
# 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.49'
PACKAGE_STRING='pgBackRest 2.49'
PACKAGE_VERSION='2.50dev'
PACKAGE_STRING='pgBackRest 2.50dev'
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.49 to adapt to many kinds of systems.
\`configure' configures pgBackRest 2.50dev 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.49:";;
short | recursive ) echo "Configuration of pgBackRest 2.50dev:";;
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.49
pgBackRest configure 2.50dev
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.49, which was
It was created by pgBackRest $as_me 2.50dev, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
@ -4930,7 +4930,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.49, which was
This file was extended by pgBackRest $as_me 2.50dev, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -4994,7 +4994,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.49
pgBackRest config.status 2.50dev
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"
@ -5698,4 +5698,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 c42b5c897ea0dbc337684d1d5d8b3026d208c43e
# Generated from src/build/configure.ac sha1 34d34bb719b0f3469ef3ac8e4a5224a02f76af9c

View File

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