1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2026-05-22 10:15:16 +02:00

Set version to 0.75

This commit is contained in:
David Steele
2015-04-21 10:48:01 -04:00
parent 6987cfaa53
commit 87f69508e3
5 changed files with 14 additions and 4 deletions
+4
View File
@@ -698,6 +698,10 @@ example: db-path=/data/db
## Release Notes
### v0.75: IN DEVELOPMENT: enterprise features: monitoring, throttling, retention period
* Asynchronous archive-get. This will make recovery much faster when restoring old backups with a lot of WAL replay or when a replica gets very far behind.
### v0.61: bug fix for uncompressed remote destination
* Fixed a buffering error that could occur on large, highly-compressible files when copying to an uncompressed remote destination. The error was detected in the decompression code and resulted in a failed backup rather than corruption so it should not affect successful backups made with previous versions.
+1 -1
View File
@@ -1 +1 @@
0.61
0.75
+8
View File
@@ -656,6 +656,14 @@ Run a <id>full</id> backup on the <id>db</id> stanza. <param>--type</param> can
<release title="Release Notes">
<release-version-list>
<release-version version="0.75" title="IN DEVELOPMENT: enterprise features: monitoring, throttling, retention period">
<release-feature-bullet-list>
<release-feature>
<text>Asynchronous archive-get. This will make recovery much faster when restoring old backups with a lot of WAL replay or when a replica gets very far behind.</text>
</release-feature>
</release-feature-bullet-list>
</release-version>
<release-version version="0.61" title="bug fix for uncompressed remote destination">
<release-feature-bullet-list>
<release-feature>
+1 -2
View File
@@ -60,7 +60,6 @@ use constant
push @EXPORT, qw(BACKUP_TYPE_FULL BACKUP_TYPE_DIFF BACKUP_TYPE_INCR);
####################################################################################################################################
# SOURCE Constants
####################################################################################################################################
@@ -1710,7 +1709,7 @@ sub optionRemote
####################################################################################################################################
# remoteDestroy
#
# Undefined the remote if it is stored locally.
# Undefine the remote if it is stored locally.
####################################################################################################################################
sub remoteDestroy
{
-1
View File
@@ -880,7 +880,6 @@ sub binary_xfer
$iBlockSize = 0;
}
}
}
while ($iBlockSize > 0);