1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-18 04:58:51 +02:00

Begin v2.09 development.

This commit is contained in:
David Steele 2019-01-04 11:00:59 +02:00
parent db24ff8df4
commit 50717aa846
4 changed files with 6 additions and 3 deletions

View File

@ -12,6 +12,9 @@
</intro>
<release-list>
<release date="XXXX-XX-XX" version="2.09dev" title="UNDER DEVELOPMENT">
</release>
<release date="2019-01-02" version="2.08" title="Minor Improvements and Bug Fixes">
<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.08';
use constant PROJECT_VERSION => '2.09dev';
push @EXPORT, qw(PROJECT_VERSION);
# Repository Format Number

View File

@ -21696,7 +21696,7 @@ static const EmbeddedModule embeddedModule[] =
"\n"
"push @EXPORT, qw(projectBin projectBinSet);\n"
"\n\n\n\n\n\n"
"use constant PROJECT_VERSION => '2.08';\n"
"use constant PROJECT_VERSION => '2.09dev';\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.08"
#define PROJECT_VERSION "2.09dev"
#endif