You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-09-16 09:06:18 +02:00
v2.10: Bug Fixes
Bug Fixes: * Add unimplemented S3 driver method required for archive-get. (Reported by mibiio.) * Fix check for improperly configured pg-path. (Reported by James Chanco Jr.)
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
pgBackRest aims to be a simple, reliable backup and restore solution that can seamlessly scale up to the largest databases and workloads by utilizing algorithms that are optimized for database-specific requirements.
|
||||
|
||||
pgBackRest [v2.09](https://github.com/pgbackrest/pgbackrest/releases/tag/release/2.09) is the current stable release. Release notes are on the [Releases](http://www.pgbackrest.org/release.html) page.
|
||||
pgBackRest [v2.10](https://github.com/pgbackrest/pgbackrest/releases/tag/release/2.10) is the current stable release. Release notes are on the [Releases](http://www.pgbackrest.org/release.html) page.
|
||||
|
||||
Documentation for v1 can be found [here](http://www.pgbackrest.org/1). No further releases are planned for v1 because v2 is backward-compatible with v1 options and repositories.
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -12,7 +12,7 @@
|
||||
</intro>
|
||||
|
||||
<release-list>
|
||||
<release date="XXXX-XX-XX" version="2.10dev" title="UNDER DEVELOPMENT">
|
||||
<release date="2019-02-09" version="2.10" title="Bug Fixes">
|
||||
<release-core-list>
|
||||
<release-bug-list>
|
||||
<release-item>
|
||||
|
@@ -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.10dev';
|
||||
use constant PROJECT_VERSION => '2.10';
|
||||
push @EXPORT, qw(PROJECT_VERSION);
|
||||
|
||||
# Repository Format Number
|
||||
|
@@ -21022,7 +21022,7 @@ static const EmbeddedModule embeddedModule[] =
|
||||
"\n"
|
||||
"push @EXPORT, qw(projectBin projectBinSet);\n"
|
||||
"\n\n\n\n\n\n"
|
||||
"use constant PROJECT_VERSION => '2.10dev';\n"
|
||||
"use constant PROJECT_VERSION => '2.10';\n"
|
||||
"push @EXPORT, qw(PROJECT_VERSION);\n"
|
||||
"\n\n\n\n\n\n"
|
||||
"use constant REPOSITORY_FORMAT => 5;\n"
|
||||
|
@@ -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.10dev"
|
||||
#define PROJECT_VERSION "2.10"
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user