Skip to content

Commit

Permalink
bumped version to 0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
darthbear committed Apr 14, 2015
1 parent 3957bdb commit a053445
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog


## Version 0.2.7

* fixed dict merge. PR [#14]

## Version 0.2.6

* fixed string substitutions. PR [#13]
Expand Down
2 changes: 1 addition & 1 deletion pyhocon/config_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _merge_config_tree(self, a, b):
"""
for key, value in b.items():
# if key is in both a and b and both values are dictionary then merge it otherwise override it
if key in a.keys() and isinstance(a[key], ConfigTree) and isinstance(a[key], ConfigTree):
if key in a and isinstance(a[key], ConfigTree) and isinstance(a[key], ConfigTree):
self._merge_config_tree(a[key], b[key])
else:
a[key] = value
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='pyhocon',
version='0.2.6',
version='0.2.7',
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.',
keywords='hocon parser',
Expand Down

0 comments on commit a053445

Please sign in to comment.