Skip to content

Commit

Permalink
Merge pull request #138 from wwkimball/development
Browse files Browse the repository at this point in the history
Release version 3.6.1
  • Loading branch information
wwkimball committed Jun 25, 2021
2 parents 407251e + eea0dc8 commit 02771d7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion yamlpath/__init__.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 02771d7

Please sign in to comment.