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

Update WAL/catalog versions for 9.5 beta 2.

This commit is contained in:
David Steele 2016-07-02 09:19:10 -04:00
parent 5df2eed729
commit 186ca18659
3 changed files with 6 additions and 2 deletions

View File

@ -137,6 +137,10 @@
<release-item>
<p>Failure to shutdown remotes at the end of the backup no longer throws an exception. Instead a warning is generated that recommends a higher <br-option>protocol-timeout</br-option>.</p>
</release-item>
<release-item>
<p>Experimental support for non-exclusive backups in <postgres/> 9.6 beta2. Changes to the control/catalog/WAL versions in subsequent betas may break compatibility but <backrest/> will be updated with each release to keep pace.</p>
</release-item>
</release-feature-list>
<release-refactor-list>

View File

@ -58,7 +58,7 @@ my $oWalMagicHash =
hex('0xD075') => PG_VERSION_93,
hex('0xD07E') => PG_VERSION_94,
hex('0xD087') => PG_VERSION_95,
hex('0xD091') => PG_VERSION_96,
hex('0xD092') => PG_VERSION_96,
};
####################################################################################################################################

View File

@ -94,7 +94,7 @@ my $oPgControlVersionHash =
{
201409291 => PG_VERSION_94,
201510051 => PG_VERSION_95,
201605051 => PG_VERSION_96,
201606171 => PG_VERSION_96,
},
};