diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b11fe82b..0ef3421d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # pgBackRest
Change Log +## v0.95dev: UNDER DEVELOPMENT +__No Release Date Set__ + +* + ## v0.92: Command-line Repository Path Fix __Released April 6, 2016__ diff --git a/doc/xml/change-log.xml b/doc/xml/change-log.xml index 25e60f308..8a69f7dff 100644 --- a/doc/xml/change-log.xml +++ b/doc/xml/change-log.xml @@ -6,6 +6,12 @@ + + + + + + Fixed an issue where the master process was passing --repo-remote-path instead of --repo-path to the remote and causing the lock files to be created in the default repository directory (/var/lib/backup), generally ending in failure. This was only an issue when --repo-remote-path was defined on the command line rather than in pg_backrest.conf. Reported by Jan Wieck. diff --git a/lib/BackRest/Version.pm b/lib/BackRest/Version.pm index 6b75e164b..0946435a7 100644 --- a/lib/BackRest/Version.pm +++ b/lib/BackRest/Version.pm @@ -17,7 +17,7 @@ use Exporter qw(import); # repositories or manifests can be read - that's the job of the format number. #----------------------------------------------------------------------------------------------------------------------------------- our # 'our' keyword is on a separate line to make the ExtUtils::MakeMaker parser happy. -$VERSION = '0.92'; +$VERSION = '0.95dev'; push @EXPORT, qw($VERSION);