diff --git a/README.md b/README.md index 6bf8453..30c0574 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ * Complete rewrite, cleaner object oriented code. * Python 3 and 2 support. -* Automated regression against real ZFS environment. +* Automated regression test against real ZFS environment. * Installable via [pip](https://pypi.org/project/zfs-autobackup/). * Backwards compatible with your current backups and parameters. * Progressive thinning (via a destroy schedule. default schedule should be fine for most people) diff --git a/bin/zfs-autobackup b/bin/zfs-autobackup index c0fba69..0857cc9 100755 --- a/bin/zfs-autobackup +++ b/bin/zfs-autobackup @@ -23,7 +23,7 @@ if sys.stdout.isatty(): colorama = False pass -VERSION = "3.0.1-beta1" +VERSION = "3.0.1-beta3" HEADER = "zfs-autobackup v{} - Copyright 2020 E.H.Eefting (edwin@datux.nl)".format(VERSION) diff --git a/setup.py b/setup.py index d453ba0..847db8b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,6 @@ import setuptools import bin.zfs_autobackup import os -os.system("git tag -m ' ' -a v{}".format(bin.zfs_autobackup.VERSION)) with open("README.md", "r") as fh: long_description = fh.read()