mirror of https://github.com/digint/btrbk
change version to 0.28.0; update ChangeLog
parent
5b34f620aa
commit
fc485565ce
13
ChangeLog
13
ChangeLog
|
@ -1,9 +1,11 @@
|
||||||
btrbk-master
|
btrbk-0.28.0
|
||||||
|
|
||||||
* MIGRATION
|
* MIGRATION
|
||||||
- Replace "ssh_port" options with "ssh://hostname[:port]" notation
|
- Replace "ssh_port" options with "ssh://hostname[:port]" notation
|
||||||
on "volume" or "target" declarations.
|
on "volume" or "target" declarations.
|
||||||
* Fix table format "resolved" (btrbk list snapshots|backups").
|
- Check filter statements in your scripts ("btrbk run <filter>"),
|
||||||
|
especially when using groups having the same name as subvolumes.
|
||||||
|
* Fix table format "resolved" (btrbk list snapshots|backups).
|
||||||
* Add btrbk-verify: tool for automated backup integrity check based
|
* Add btrbk-verify: tool for automated backup integrity check based
|
||||||
on rsync (close #256).
|
on rsync (close #256).
|
||||||
* Use "ssh://hostname[:port]" notation instead of ambiguous
|
* Use "ssh://hostname[:port]" notation instead of ambiguous
|
||||||
|
@ -13,8 +15,15 @@ btrbk-master
|
||||||
* Remove selected rows ("*host", "*port") from table output if all
|
* Remove selected rows ("*host", "*port") from table output if all
|
||||||
values are empty.
|
values are empty.
|
||||||
* Consider all parent/child relations (close #255).
|
* Consider all parent/child relations (close #255).
|
||||||
|
* Disallow unrelated parents for btrfs-send if incremental=strict.
|
||||||
|
* Add clone sources to btrfs-send if necessary.
|
||||||
* Add "incremental_resolve" configuration option.
|
* Add "incremental_resolve" configuration option.
|
||||||
* Add "incremental_clones" configuration option.
|
* Add "incremental_clones" configuration option.
|
||||||
|
* Add "noauto" configuration option.
|
||||||
|
* Add "--exclude" command line option.
|
||||||
|
* Make target_type optional, defaults to "send-receive".
|
||||||
|
* Use more sophisticated filter arguments.
|
||||||
|
* Allow whitespace separated "group" option.
|
||||||
|
|
||||||
btrbk-0.27.2
|
btrbk-0.27.2
|
||||||
|
|
||||||
|
|
2
btrbk
2
btrbk
|
@ -32,7 +32,7 @@ use Carp qw(confess);
|
||||||
use Getopt::Long qw(GetOptions);
|
use Getopt::Long qw(GetOptions);
|
||||||
use Time::Local qw( timelocal timegm timegm_nocheck );
|
use Time::Local qw( timelocal timegm timegm_nocheck );
|
||||||
|
|
||||||
our $VERSION = '0.28.0-dev';
|
our $VERSION = '0.28.0';
|
||||||
our $AUTHOR = 'Axel Burri <axel@tty0.ch>';
|
our $AUTHOR = 'Axel Burri <axel@tty0.ch>';
|
||||||
our $PROJECT_HOME = '<https://digint.ch/btrbk/>';
|
our $PROJECT_HOME = '<https://digint.ch/btrbk/>';
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
btrbk(1)
|
btrbk(1)
|
||||||
========
|
========
|
||||||
:date: 2019-03-26
|
:date: 2019-04-24
|
||||||
:release-version: 0.27.2
|
:release-version: 0.28.0
|
||||||
:man manual: Btrbk Manual
|
:man manual: Btrbk Manual
|
||||||
:man source: Btrbk {release-version}
|
:man source: Btrbk {release-version}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
btrbk.conf(5)
|
btrbk.conf(5)
|
||||||
=============
|
=============
|
||||||
:date: 2019-03-26
|
:date: 2019-04-24
|
||||||
:release-version: 0.27.2
|
:release-version: 0.28.0
|
||||||
:man manual: Btrbk Manual
|
:man manual: Btrbk Manual
|
||||||
:man source: Btrbk {release-version}
|
:man source: Btrbk {release-version}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
ssh_filter_btrbk(1)
|
ssh_filter_btrbk(1)
|
||||||
===================
|
===================
|
||||||
:date: 2019-03-26
|
:date: 2019-04-24
|
||||||
:release-version: 0.27.2
|
:release-version: 0.28.0
|
||||||
:man manual: Btrbk Manual
|
:man manual: Btrbk Manual
|
||||||
:man source: Btrbk {release-version}
|
:man source: Btrbk {release-version}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue