diff --git a/NEWS b/NEWS index b3498470..2e13863a 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,5 @@ -1.3.9.dev0 - * #195: Switch to command-like actions as more traditional sub-commands, e.g. "borgmatic create", +1.3.9 + * #195: Switch to command-line actions as more traditional sub-commands, e.g. "borgmatic create", "borgmatic prune", etc. However, the classic dashed options like "--create" still work! 1.3.8 diff --git a/scripts/find-unsupported-borg-options b/scripts/find-unsupported-borg-options index ee66ed79..3eeabf1c 100755 --- a/scripts/find-unsupported-borg-options +++ b/scripts/find-unsupported-borg-options @@ -18,7 +18,7 @@ mv temp.yaml.uncommented temp.yaml for sub_command in prune create check list info; do echo "********** borg $sub_command **********" - for line in $(borgmatic --config temp.yaml --$sub_command -v 2 2>&1 | grep "borg\w* $sub_command") ; do + for line in $(borgmatic --config temp.yaml $sub_command -v 2 2>&1 | grep "borg\w* $sub_command") ; do echo "$line" | grep '^-' >> borgmatic_borg_flags done sort borgmatic_borg_flags > borgmatic_borg_flags.sorted diff --git a/setup.py b/setup.py index 9949880d..e3a6c7c8 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -VERSION = '1.3.9.dev0' +VERSION = '1.3.9' setup(