mirror of https://github.com/digint/btrbk
parent
930e2cfbf0
commit
9f96974a5d
|
@ -12,6 +12,7 @@
|
|||
- bugfix: subvolumes are also allowed for "snapshot_dir" (fixes
|
||||
issues #1, #2)
|
||||
|
||||
* btrbk-current
|
||||
- bugfix: allow '@' character for subvolume names (ubuntu prefixes
|
||||
all subvolumes with '@' in its subvolume layout)
|
||||
* btrbk-0.13
|
||||
- bugfix: allow '@' character for subvolume names (blocker for
|
||||
ubuntu users, since ubuntu prefixes all subvolumes with '@' in its
|
||||
subvolume layout)
|
||||
|
|
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
PN = btrbk
|
||||
VERSION = 0.12
|
||||
VERSION = 0.13
|
||||
|
||||
PREFIX ?= /usr
|
||||
CONFDIR = /etc
|
||||
|
|
2
btrbk
2
btrbk
|
@ -47,7 +47,7 @@ use Date::Calc qw(Today Delta_Days Day_of_Week);
|
|||
use Getopt::Std;
|
||||
use Data::Dumper;
|
||||
|
||||
our $VERSION = "0.13-dev";
|
||||
our $VERSION = "0.13";
|
||||
our $AUTHOR = 'Axel Burri <axel@tty0.ch>';
|
||||
our $PROJECT_HOME = '<http://www.digint.ch/btrbk/>';
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH "btrbk" "1" "2015-03-13" "btrbk v0.12" ""
|
||||
.TH "btrbk" "1" "2015-03-19" "btrbk v0.13" ""
|
||||
.SH NAME
|
||||
btrbk \- backup tool for btrfs volumes
|
||||
.SH SYNOPSIS
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH "btrbk.conf" "5" "2015-03-13" "btrbk v0.12" ""
|
||||
.TH "btrbk.conf" "5" "2015-03-19" "btrbk v0.13" ""
|
||||
.SH NAME
|
||||
btrbk.conf \- btrbk configuration file
|
||||
.SH SYNOPSIS
|
||||
|
|
Loading…
Reference in New Issue