diff --git a/doc/RELEASE.md b/doc/RELEASE.md index 00776e06f..6b5de4877 100644 --- a/doc/RELEASE.md +++ b/doc/RELEASE.md @@ -132,7 +132,7 @@ use constant PROJECT_VERSION => '2.15dev' Run deploy to generate git history (ctrl-c as soon as the file is generated): ``` -doc/release.pl --deploy +doc/release.pl --build ``` Build to generate files and test documentation: diff --git a/doc/resource/git-history.cache b/doc/resource/git-history.cache index 7f9d63d0b..5b91ff64f 100644 --- a/doc/resource/git-history.cache +++ b/doc/resource/git-history.cache @@ -1,4 +1,9 @@ [ + { + "commit": "9e730c1bd61b00fa506ea443cdd6161e88ed31ae", + "date": "2019-08-05 12:03:04 -0400", + "subject": "v2.16: C Migrations and Bug Fixes" + }, { "commit": "3d3003e9ca6dd449ea16c6812d1cabc392c9d294", "date": "2019-08-01 20:35:01 -0400", diff --git a/doc/xml/release.xml b/doc/xml/release.xml index 854166901..a0a759e87 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 bf8dd6c0a..dde6d6ed5 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.16'; +use constant PROJECT_VERSION => '2.17dev'; push @EXPORT, qw(PROJECT_VERSION); # Repository Format Number diff --git a/src/configure b/src/configure index a269df187..bafca2066 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.16. +# Generated by GNU Autoconf 2.69 for pgBackRest 2.17dev. # # # 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.16' -PACKAGE_STRING='pgBackRest 2.16' +PACKAGE_VERSION='2.17dev' +PACKAGE_STRING='pgBackRest 2.17dev' 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.16 to adapt to many kinds of systems. +\`configure' configures pgBackRest 2.17dev 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.16:";; + short | recursive ) echo "Configuration of pgBackRest 2.17dev:";; 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.16 +pgBackRest configure 2.17dev 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.16, which was +It was created by pgBackRest $as_me 2.17dev, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3619,7 +3619,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.16, which was +This file was extended by pgBackRest $as_me 2.17dev, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -3681,7 +3681,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.16 +pgBackRest config.status 2.17dev 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 e08ad5ffc..91a8c4b7c 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -1,6 +1,6 @@ # Initialize configuration AC_PREREQ([2.69]) -AC_INIT([pgBackRest], [2.16]) +AC_INIT([pgBackRest], [2.17dev]) AC_CONFIG_SRCDIR([version.h]) # Check compiler diff --git a/src/perl/embed.auto.c b/src/perl/embed.auto.c index 32071488f..44592be36 100644 --- a/src/perl/embed.auto.c +++ b/src/perl/embed.auto.c @@ -15672,7 +15672,7 @@ static const EmbeddedModule embeddedModule[] = "\n" "push @EXPORT, qw(projectBin projectBinSet);\n" "\n\n\n\n\n\n" - "use constant PROJECT_VERSION => '2.16';\n" + "use constant PROJECT_VERSION => '2.17dev';\n" "push @EXPORT, qw(PROJECT_VERSION);\n" "\n\n\n\n\n\n" "use constant REPOSITORY_FORMAT => 5;\n" diff --git a/src/version.h b/src/version.h index f53e71a21..7361948b9 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.16" +#define PROJECT_VERSION "2.17dev" #endif