From 0ad7b4f40808bb9e49866f3a19d97d338ab3aef0 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Tue, 18 Jul 2023 22:50:09 -0700 Subject: [PATCH] Bump version for release. --- NEWS | 7 ++++--- borgmatic/config/normalize.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index dd882d97..73f456e0 100644 --- a/NEWS +++ b/NEWS @@ -1,18 +1,19 @@ -1.8.0.dev0 +1.8.0 * #575: BREAKING: For the "borgmatic borg" action, instead of implicitly injecting repository/archive into the resulting Borg command-line, pass repository to Borg via an environment variable and make archive available for explicit use in your commands. See the documentation for more information: https://torsion.org/borgmatic/docs/how-to/run-arbitrary-borg-commands/ * #719: Fix an error when running "borg key export" through borgmatic. - * #720: Fix an error when dumping a MySQL database and the "exclude_nodump" option is set. + * #720: Fix an error when dumping a database and the "exclude_nodump" option is set. * #724: Add "check_i_know_what_i_am_doing" option to bypass Borg confirmation prompt when running "check --repair". * When merging two configuration files, error gracefully if the two files do not adhere to the same format. * #721: Remove configuration sections ("location:", "storage:", "hooks:" etc.), while still keeping deprecated support for them. Now, all options are at the same level, and you don't need to worry - about commenting/uncommenting section headers when you change an option. + about commenting/uncommenting section headers when you change an option (if you remove your + sections first). * #721: BREAKING: The retention prefix and the consistency prefix can no longer have different values (unless one is not set). * #721: BREAKING: The storage umask and the hooks umask can no longer have different values (unless diff --git a/borgmatic/config/normalize.py b/borgmatic/config/normalize.py index 7ca79130..a80744b9 100644 --- a/borgmatic/config/normalize.py +++ b/borgmatic/config/normalize.py @@ -46,7 +46,7 @@ def normalize_sections(config_filename, config): dict( levelno=logging.WARNING, levelname='WARNING', - msg=f'{config_filename}: Configuration sections like location: and storage: are deprecated and support will be removed from a future release. To prepare for this, move your options out of sections to the global scope.', + msg=f'{config_filename}: Configuration sections (like location: and storage:) are deprecated and support will be removed from a future release. To prepare for this, move your options out of sections to the global scope.', ) ) ] diff --git a/setup.py b/setup.py index d6a01fd6..6e5e4190 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -VERSION = '1.8.0.dev0' +VERSION = '1.8.0' setup(