Mention --stats command-line flag in NEWS file.
This commit is contained in:
parent
d4bbac4467
commit
066399ecdb
3 changed files with 5 additions and 2 deletions
3
NEWS
3
NEWS
|
@ -1,3 +1,6 @@
|
||||||
|
1.2.13.dev0
|
||||||
|
* #100: Support for --stats command-line flag independent of --verbosity.
|
||||||
|
|
||||||
1.2.12
|
1.2.12
|
||||||
* #110: Support for Borg repository initialization via borgmatic --init command-line flag.
|
* #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.
|
* #111: Update Borg create --filter values so a dry run lists files to back up.
|
||||||
|
|
|
@ -161,7 +161,7 @@ def parse_arguments(*arguments):
|
||||||
|
|
||||||
if args.stats and not (args.create or args.prune):
|
if args.stats and not (args.create or args.prune):
|
||||||
raise ValueError(
|
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):
|
if args.json and not (args.create or args.list or args.info):
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -1,7 +1,7 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
VERSION = '1.2.12'
|
VERSION = '1.2.13.dev0'
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
|
Loading…
Reference in a new issue