From 066399ecdbb959e8d1e9e1d277b5360aca399ee1 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sun, 23 Dec 2018 16:06:08 -0800 Subject: [PATCH] Mention --stats command-line flag in NEWS file. --- NEWS | 3 +++ borgmatic/commands/borgmatic.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 7db671134..f7c84f471 100644 --- a/NEWS +++ b/NEWS @@ -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. diff --git a/borgmatic/commands/borgmatic.py b/borgmatic/commands/borgmatic.py index e4aab4957..be9d2e337 100644 --- a/borgmatic/commands/borgmatic.py +++ b/borgmatic/commands/borgmatic.py @@ -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): diff --git a/setup.py b/setup.py index 996067a38..2d7f7f63c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages -VERSION = '1.2.12' +VERSION = '1.2.13.dev0' setup(