From 382ddfd79dfec12f4cdf821f36a47dd404a51356 Mon Sep 17 00:00:00 2001 From: David Steele Date: Tue, 21 Jan 2020 16:43:44 -0700 Subject: [PATCH] Begin v2.23 development. --- doc/resource/git-history.cache | 5 +++++ doc/xml/release.xml | 3 +++ lib/pgBackRest/Version.pm | 2 +- src/configure | 18 +++++++++--------- src/configure.ac | 2 +- src/version.h | 2 +- 6 files changed, 20 insertions(+), 12 deletions(-) diff --git a/doc/resource/git-history.cache b/doc/resource/git-history.cache index 8210c9ff7..0ba7f3130 100644 --- a/doc/resource/git-history.cache +++ b/doc/resource/git-history.cache @@ -1,4 +1,9 @@ [ + { + "commit": "bae6e1c9e3a035f3793739ef1b469015777aa70b", + "date": "2020-01-21 16:12:33 -0700", + "subject": "v2.22: Bug Fix" + }, { "commit": "94842ccecee642cc58f6c177c19e642d86a8d997", "date": "2020-01-21 11:59:25 -0700", diff --git a/doc/xml/release.xml b/doc/xml/release.xml index 928c237cf..8d4b232be 100644 --- a/doc/xml/release.xml +++ b/doc/xml/release.xml @@ -12,6 +12,9 @@ + + + diff --git a/lib/pgBackRest/Version.pm b/lib/pgBackRest/Version.pm index c33f685d2..b677dcfa4 100644 --- a/lib/pgBackRest/Version.pm +++ b/lib/pgBackRest/Version.pm @@ -39,7 +39,7 @@ push @EXPORT, qw(projectBin projectBinSet); # Defines the current version of the BackRest executable. The version number is used to track features but does not affect what # repositories or manifests can be read - that's the job of the format number. #----------------------------------------------------------------------------------------------------------------------------------- -use constant PROJECT_VERSION => '2.22'; +use constant PROJECT_VERSION => '2.23dev'; push @EXPORT, qw(PROJECT_VERSION); # Repository Format Number diff --git a/src/configure b/src/configure index 4158fe7b5..c5d59ddb3 100755 --- a/src/configure +++ b/src/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for pgBackRest 2.22. +# Generated by GNU Autoconf 2.69 for pgBackRest 2.23dev. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -576,8 +576,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='pgBackRest' PACKAGE_TARNAME='pgbackrest' -PACKAGE_VERSION='2.22' -PACKAGE_STRING='pgBackRest 2.22' +PACKAGE_VERSION='2.23dev' +PACKAGE_STRING='pgBackRest 2.23dev' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1199,7 +1199,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.22 to adapt to many kinds of systems. +\`configure' configures pgBackRest 2.23dev to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1261,7 +1261,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of pgBackRest 2.22:";; + short | recursive ) echo "Configuration of pgBackRest 2.23dev:";; esac cat <<\_ACEOF @@ -1348,7 +1348,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -pgBackRest configure 2.22 +pgBackRest configure 2.23dev generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1449,7 +1449,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.22, which was +It was created by pgBackRest $as_me 2.23dev, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3566,7 +3566,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.22, which was +This file was extended by pgBackRest $as_me 2.23dev, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -3628,7 +3628,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="\\ -pgBackRest config.status 2.22 +pgBackRest config.status 2.23dev configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/src/configure.ac b/src/configure.ac index c2e6fc7d8..a9425be89 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -1,6 +1,6 @@ # Initialize configuration AC_PREREQ([2.69]) -AC_INIT([pgBackRest], [2.22]) +AC_INIT([pgBackRest], [2.23dev]) AC_CONFIG_SRCDIR([version.h]) # Check compiler diff --git a/src/version.h b/src/version.h index 42e6a3b27..c6c525fa4 100644 --- a/src/version.h +++ b/src/version.h @@ -23,6 +23,6 @@ repository will be invalid unless migration functions are written. /*********************************************************************************************************************************** Software version. Currently this value is maintained in Version.pm and updated by test.pl. ***********************************************************************************************************************************/ -#define PROJECT_VERSION "2.22" +#define PROJECT_VERSION "2.23dev" #endif