From 72b97ab2e8ed0d5ba4b5d4d4ab881f230b2e57ce Mon Sep 17 00:00:00 2001 From: Edwin Eefting Date: Wed, 21 Apr 2021 00:04:58 +0200 Subject: [PATCH] doc. bump version --- README.md | 5 +++-- zfs_autobackup/ZfsAutobackup.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6db3681..4577504 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,8 @@ zfs-autobackup tries to be the easiest to use backup tool for zfs. * "pull" remote data from a server via SSH and backup it locally. * Or even pull data from a server while pushing the backup to another server. (Zero trust between source and target server) * Can be scheduled via a simple cronjob or run directly from commandline. -* Supports resuming of interrupted transfers. +* Supports resuming of interrupted transfers. +* ZFS encryption support: Can decrypt / encrypt or even re-encrypt datasets during transfer. * Multiple backups from and to the same datasets are no problem. * Creates the snapshot before doing anything else. (assuring you at least have a snapshot if all else fails) * Checks everything but tries continue on non-fatal errors when possible. (Reports error-count when done) @@ -42,7 +43,7 @@ zfs-autobackup tries to be the easiest to use backup tool for zfs. * Uses zfs-holds on important snapshots so they cant be accidentally destroyed. * Automatic resuming of failed transfers. * Can continue from existing common snapshots. (e.g. easy migration) -* Gracefully handles destroyed datasets on source. +* Gracefully handles datasets that no longer exist on source. * Easy installation: * Just install zfs-autobackup via pip, or download it manually. * Only needs to be installed on one side. diff --git a/zfs_autobackup/ZfsAutobackup.py b/zfs_autobackup/ZfsAutobackup.py index 8c3263e..531ddb4 100644 --- a/zfs_autobackup/ZfsAutobackup.py +++ b/zfs_autobackup/ZfsAutobackup.py @@ -12,7 +12,7 @@ from zfs_autobackup.ThinnerRule import ThinnerRule class ZfsAutobackup: """main class""" - VERSION = "3.1-beta3" + VERSION = "3.1-beta4" HEADER = "zfs-autobackup v{} - Copyright 2020 E.H.Eefting (edwin@datux.nl)".format(VERSION) def __init__(self, argv, print_arguments=True):