1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-12 10:04:14 +02:00

Begin v2.06 development.

This commit is contained in:
David Steele 2018-08-31 14:24:36 -04:00
parent bc7462d86d
commit 41746b53cd
4 changed files with 6 additions and 3 deletions

View File

@ -12,6 +12,9 @@
</intro> </intro>
<release-list> <release-list>
<release date="XXXX-XX-XX" version="2.06dev" title="UNDER DEVELOPMENT">
</release>
<release date="2018-08-31" version="2.05" title="Environment Variable Options and Exclude Temporary/Unlogged Relations"> <release date="2018-08-31" version="2.05" title="Environment Variable Options and Exclude Temporary/Unlogged Relations">
<release-core-list> <release-core-list>
<release-bug-list> <release-bug-list>

View File

@ -39,7 +39,7 @@ push @EXPORT, qw(backrestBin backrestBinSet);
# Defines the current version of the BackRest executable. The version number is used to track features but does not affect what # 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. # repositories or manifests can be read - that's the job of the format number.
#----------------------------------------------------------------------------------------------------------------------------------- #-----------------------------------------------------------------------------------------------------------------------------------
use constant BACKREST_VERSION => '2.05'; use constant BACKREST_VERSION => '2.06dev';
push @EXPORT, qw(BACKREST_VERSION); push @EXPORT, qw(BACKREST_VERSION);
# Format Format Number # Format Format Number

View File

@ -21303,7 +21303,7 @@ static const EmbeddedModule embeddedModule[] =
"\n" "\n"
"push @EXPORT, qw(backrestBin backrestBinSet);\n" "push @EXPORT, qw(backrestBin backrestBinSet);\n"
"\n\n\n\n\n\n" "\n\n\n\n\n\n"
"use constant BACKREST_VERSION => '2.05';\n" "use constant BACKREST_VERSION => '2.06dev';\n"
"push @EXPORT, qw(BACKREST_VERSION);\n" "push @EXPORT, qw(BACKREST_VERSION);\n"
"\n\n\n\n\n\n" "\n\n\n\n\n\n"
"use constant BACKREST_FORMAT => 5;\n" "use constant BACKREST_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. Software version. Currently this value is maintained in Version.pm and updated by test.pl.
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
#define PGBACKREST_VERSION "2.05" #define PGBACKREST_VERSION "2.06dev"
#endif #endif