1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-10-30 23:37:45 +02:00

Begin v2.16 development.

This commit is contained in:
David Steele
2019-06-25 08:42:20 -04:00
parent 6650d8144c
commit 466602387b
8 changed files with 30 additions and 16 deletions

View File

@@ -128,10 +128,16 @@ use constant PROJECT_VERSION => '2.14';
to:
```
use constant PROJECT_VERSION => '2.15dev';
Build to generate files:
```
test/test.pl --no-lint --vm=u18 --no-package --build-only
Run deploy to generate git history (ctrl-c as soon as the file is generated):
```
doc/release.pl --deploy
```
Build to generate files and test documentation:
```
test/test.pl --no-lint --vm=u18 --build-only
```
Commit and push to integration:

View File

@@ -1,4 +1,9 @@
[
{
"commit": "6650d8144cba46f93ad75c11ad98d87c57d2ea7f",
"date": "2019-06-25 08:29:06 -0400",
"subject": "v2.15: C Implementation of Expire"
},
{
"commit": "51fcaee43edf022aea0f94b76d254f2de8b6e1d1",
"date": "2019-06-25 07:58:38 -0400",

View File

@@ -12,6 +12,9 @@
</intro>
<release-list>
<release date="XXXX-XX-XX" version="2.16dev" title="UNDER DEVELOPMENT">
</release>
<release date="2019-06-25" version="2.15" title="C Implementation of Expire">
<release-core-list>
<release-bug-list>

View File

@@ -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.15';
use constant PROJECT_VERSION => '2.16dev';
push @EXPORT, qw(PROJECT_VERSION);
# Repository Format Number

18
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.69 for pgBackRest 2.15.
# Generated by GNU Autoconf 2.69 for pgBackRest 2.16dev.
#
#
# 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.15'
PACKAGE_STRING='pgBackRest 2.15'
PACKAGE_VERSION='2.16dev'
PACKAGE_STRING='pgBackRest 2.16dev'
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.15 to adapt to many kinds of systems.
\`configure' configures pgBackRest 2.16dev 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.15:";;
short | recursive ) echo "Configuration of pgBackRest 2.16dev:";;
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.15
pgBackRest configure 2.16dev
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.15, which was
It was created by pgBackRest $as_me 2.16dev, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -3568,7 +3568,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.15, which was
This file was extended by pgBackRest $as_me 2.16dev, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -3630,7 +3630,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.15
pgBackRest config.status 2.16dev
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

View File

@@ -1,6 +1,6 @@
# Initialize configuration
AC_PREREQ([2.69])
AC_INIT([pgBackRest], [2.15])
AC_INIT([pgBackRest], [2.16dev])
AC_CONFIG_SRCDIR([version.h])
# Check compiler

View File

@@ -19325,7 +19325,7 @@ static const EmbeddedModule embeddedModule[] =
"\n"
"push @EXPORT, qw(projectBin projectBinSet);\n"
"\n\n\n\n\n\n"
"use constant PROJECT_VERSION => '2.15';\n"
"use constant PROJECT_VERSION => '2.16dev';\n"
"push @EXPORT, qw(PROJECT_VERSION);\n"
"\n\n\n\n\n\n"
"use constant REPOSITORY_FORMAT => 5;\n"

View File

@@ -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.15"
#define PROJECT_VERSION "2.16dev"
#endif