Bump version for release.
This commit is contained in:
parent
7185146481
commit
cd192a6909
3 changed files with 4 additions and 4 deletions
4
NEWS
4
NEWS
|
@ -1,5 +1,5 @@
|
||||||
1.3.9.dev0
|
1.3.9
|
||||||
* #195: Switch to command-like actions as more traditional sub-commands, e.g. "borgmatic create",
|
* #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!
|
"borgmatic prune", etc. However, the classic dashed options like "--create" still work!
|
||||||
|
|
||||||
1.3.8
|
1.3.8
|
||||||
|
|
|
@ -18,7 +18,7 @@ mv temp.yaml.uncommented temp.yaml
|
||||||
for sub_command in prune create check list info; do
|
for sub_command in prune create check list info; do
|
||||||
echo "********** borg $sub_command **********"
|
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
|
echo "$line" | grep '^-' >> borgmatic_borg_flags
|
||||||
done
|
done
|
||||||
sort borgmatic_borg_flags > borgmatic_borg_flags.sorted
|
sort borgmatic_borg_flags > borgmatic_borg_flags.sorted
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -1,6 +1,6 @@
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
VERSION = '1.3.9.dev0'
|
VERSION = '1.3.9'
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
|
Loading…
Reference in a new issue