Mention --stats command-line flag in NEWS file.
the build failed Details

This commit is contained in:
Dan Helfman 2018-12-23 16:06:08 -08:00
parent d4bbac4467
commit 066399ecdb
3 changed files with 5 additions and 2 deletions

3
NEWS
View File

@ -1,3 +1,6 @@
1.2.13.dev0
* #100: Support for --stats command-line flag independent of --verbosity.
1.2.12
* #110: Support for Borg repository initialization via borgmatic --init command-line flag.
* #111: Update Borg create --filter values so a dry run lists files to back up.

View File

@ -161,7 +161,7 @@ def parse_arguments(*arguments):
if args.stats and not (args.create or args.prune):
raise ValueError(
'The --stats option can only be used with the --create, or --prune options'
'The --stats option can only be used with the --create or --prune options'
)
if args.json and not (args.create or args.list or args.info):

View File

@ -1,7 +1,7 @@
from setuptools import setup, find_packages
VERSION = '1.2.12'
VERSION = '1.2.13.dev0'
setup(