mirror of https://github.com/digint/btrbk
parent
0f21df15c2
commit
b64ffbacf5
11
ChangeLog
11
ChangeLog
|
@ -1,4 +1,4 @@
|
||||||
btrbk-current
|
btrbk-0.29.0
|
||||||
|
|
||||||
* MIGRATION
|
* MIGRATION
|
||||||
- If stream_buffer or rate_limit is configured, please install
|
- If stream_buffer or rate_limit is configured, please install
|
||||||
|
@ -17,6 +17,15 @@ btrbk-current
|
||||||
* Add stream_buffer_remote and rate_limit_remote options.
|
* Add stream_buffer_remote and rate_limit_remote options.
|
||||||
* Use "mbuffer" instead of "pv" for --progress display.
|
* Use "mbuffer" instead of "pv" for --progress display.
|
||||||
* Add stream_buffer functionality for raw targets.
|
* Add stream_buffer functionality for raw targets.
|
||||||
|
* Add action "ls": list all btrfs subvolumes below given path.
|
||||||
|
* Change table output: print single-line, uppercase headings.
|
||||||
|
* ssh_filter_btrbk.sh: whitelist mkdir if -t,--target option is set,
|
||||||
|
used by "btrbk archive" action (close #297).
|
||||||
|
* Bugfix: handle subvolumes with special characters (close #288).
|
||||||
|
* Bugfix: don't display "<no_action>" in backup summary if volume is
|
||||||
|
skipped by --exclude or noauto (close #291).
|
||||||
|
* Bugfix: systemd: Use WantedBy=timers.target instead of
|
||||||
|
WantedBy=multi-user.target in btrbk.timer (close #293).
|
||||||
|
|
||||||
btrbk-0.28.3
|
btrbk-0.28.3
|
||||||
|
|
||||||
|
|
2
btrbk
2
btrbk
|
@ -34,7 +34,7 @@ use Time::Local qw( timelocal timegm timegm_nocheck );
|
||||||
use IPC::Open3 qw(open3);
|
use IPC::Open3 qw(open3);
|
||||||
use Symbol qw(gensym);
|
use Symbol qw(gensym);
|
||||||
|
|
||||||
our $VERSION = '0.29.0-dev';
|
our $VERSION = '0.29.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-07-28
|
:date: 2019-10-27
|
||||||
:release-version: 0.28.3
|
:release-version: 0.29.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-07-28
|
:date: 2019-10-27
|
||||||
:release-version: 0.28.3
|
:release-version: 0.29.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-07-28
|
:date: 2019-10-27
|
||||||
:release-version: 0.28.3
|
:release-version: 0.29.0
|
||||||
:man manual: Btrbk Manual
|
:man manual: Btrbk Manual
|
||||||
:man source: Btrbk {release-version}
|
:man source: Btrbk {release-version}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue