Bump version for release.
This commit is contained in:
parent
bcc820d646
commit
c646edf2c7
3 changed files with 5 additions and 3 deletions
4
NEWS
4
NEWS
|
@ -1,5 +1,7 @@
|
|||
1.5.21.dev0
|
||||
1.5.21
|
||||
* #28: Optionally retry failing backups via "retries" and "retry_wait" configuration options.
|
||||
* #306: Add "list_options" MySQL configuration option for passing additional arguments to MySQL
|
||||
list command.
|
||||
* #459: Add support for old version (2.x) of jsonschema library.
|
||||
|
||||
1.5.20
|
||||
|
|
|
@ -112,7 +112,7 @@ def parse_configuration(config_filename, schema_filename, overrides=None):
|
|||
|
||||
try:
|
||||
validator = jsonschema.Draft7Validator(schema)
|
||||
except AttributeError:
|
||||
except AttributeError: # pragma: no cover
|
||||
validator = jsonschema.Draft4Validator(schema)
|
||||
validation_errors = tuple(validator.iter_errors(config))
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -1,6 +1,6 @@
|
|||
from setuptools import find_packages, setup
|
||||
|
||||
VERSION = '1.5.21.dev0'
|
||||
VERSION = '1.5.21'
|
||||
|
||||
|
||||
setup(
|
||||
|
|
Loading…
Reference in a new issue