diff --git a/changelog.txt b/changelog.txt index eeffbd59..d4904660 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ jc changelog +202001XX v1.7.1 +- Add yaml file parser (tested on linux and OSX) + 20191217 v1.6.1 - Add du parser (tested on linux and OSX) - Add crontab parser (tested on linux and OSX) diff --git a/docgen.sh b/docgen.sh index f51267d4..8d2c612f 100755 --- a/docgen.sh +++ b/docgen.sh @@ -36,3 +36,4 @@ pydocmd simple jc.parsers.systemctl_luf+ > ../docs/parsers/systemctl_luf.md pydocmd simple jc.parsers.uname+ > ../docs/parsers/uname.md pydocmd simple jc.parsers.uptime+ > ../docs/parsers/uptime.md pydocmd simple jc.parsers.w+ > ../docs/parsers/w.md +pydocmd simple jc.parsers.yaml+ > ../docs/parsers/yaml.md diff --git a/setup.py b/setup.py index ce672914..d073a1a5 100755 --- a/setup.py +++ b/setup.py @@ -5,12 +5,13 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.6.1', + version='1.7.1', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='This tool serializes the output of popular command line tools to structured JSON output.', install_requires=[ - 'ifconfig-parser>=0.0.5' + 'ifconfig-parser>=0.0.5', + 'ruamel.yaml>=0.15.0' ], license='MIT', long_description=long_description,