Browse Source

Mention --stats command-line flag in NEWS file.

Dan Helfman 6 years ago
parent
commit
066399ecdb
3 changed files with 5 additions and 2 deletions
  1. 3 0
      NEWS
  2. 1 1
      borgmatic/commands/borgmatic.py
  3. 1 1
      setup.py

+ 3 - 0
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.

+ 1 - 1
borgmatic/commands/borgmatic.py

@@ -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):

+ 1 - 1
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(