diff --git a/CHANGELOG.md b/CHANGELOG.md index 956a1e6c..8c215a4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +# Version 0.3.34 + +* Fixed some error handling that was unable to deal with unicode keys. PR [#99] +* Fixed Python 2.6 incompatible format string. PR [#100] + # Version 0.3.33 * Fix unicode dict key. PR [#94] diff --git a/README.md b/README.md index 5ae7e711..9f1dd1a9 100644 --- a/README.md +++ b/README.md @@ -339,6 +339,7 @@ Java properties mapping | :x: - Martin Kristiansen ([@lillekemiker](https://github.com/lillekemiker)) - yzliao ([@yzliao](https://github.com/yzliao)) - atomerju ([@atomerju](https://github.com/atomerju)) + - Nick Gerow ([@NickG123](https://github.com/NickG123)) ### Thanks diff --git a/setup.py b/setup.py index cdeadb8e..fd3da8b6 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def run_tests(self): setup( name='pyhocon', - version='0.3.33', + version='0.3.34', description='HOCON parser for Python', long_description='pyhocon is a HOCON parser for Python. Additionally we provide a tool (pyhocon) to convert any HOCON ' 'content into json, yaml and properties format.',