From 50717aa846a41852179feaa69b35a924bffc66c6 Mon Sep 17 00:00:00 2001 From: David Steele Date: Fri, 4 Jan 2019 11:00:59 +0200 Subject: [PATCH] Begin v2.09 development. --- doc/xml/release.xml | 3 +++ lib/pgBackRest/Version.pm | 2 +- src/perl/embed.auto.c | 2 +- src/version.h | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/doc/xml/release.xml b/doc/xml/release.xml index bce197bc9..071996362 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 9721602ea..20ec599a6 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.08'; +use constant PROJECT_VERSION => '2.09dev'; push @EXPORT, qw(PROJECT_VERSION); # Repository Format Number diff --git a/src/perl/embed.auto.c b/src/perl/embed.auto.c index 57357e984..cecfd65ab 100644 --- a/src/perl/embed.auto.c +++ b/src/perl/embed.auto.c @@ -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" diff --git a/src/version.h b/src/version.h index a82ecba77..c0f14ed4f 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.08" +#define PROJECT_VERSION "2.09dev" #endif