diff --git a/CHANGES b/CHANGES index 7673475..cd13897 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +3.6.1: +Enhancements: +* Enable verified support for ruamel.yaml up to version 0.17.10. + 3.6.0: Bug Fixes: * Some peculiar data constructions could cause the ConsolePrinter to stack-dump diff --git a/setup.py b/setup.py index c22813d..299774e 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ }, python_requires=">3.6.0", install_requires=[ - "ruamel.yaml>=0.15.96,!=0.17.0,!=0.17.1,!=0.17.2,!=0.17.5,<=0.17.7", + "ruamel.yaml>=0.15.96,!=0.17.0,!=0.17.1,!=0.17.2,!=0.17.5,<=0.17.10", ], tests_require=[ "pytest", diff --git a/yamlpath/__init__.py b/yamlpath/__init__.py index 1364d53..d01f70b 100644 --- a/yamlpath/__init__.py +++ b/yamlpath/__init__.py @@ -1,6 +1,6 @@ """Core YAML Path classes.""" # Establish the version number common to all components -__version__ = "3.6.0" +__version__ = "3.6.1" from yamlpath.yamlpath import YAMLPath from yamlpath.processor import Processor