Skip to content

Commit

Permalink
bumped version to 0.3.38
Browse files Browse the repository at this point in the history
  • Loading branch information
darthbear committed Sep 28, 2017
1 parent 963400a commit 7d87f90
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# Version 0.3.38
* Added compact option for hocon output. #129
* Unicode fix for unquoted strings. #130

# Version 0.3.37

* Dropped support for Python 2.6 (wheel)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,3 +357,4 @@ Java properties mapping | :x:
- François Farquet ([@farquet](https://github.com/farquet))
- Gavin Bisesi ([@Daenyth](https://github.com/Daenyth))
- Cosmin Basca ([@cosminbasca](https://github.com/cosminbasca))
- cryptofred ([@cryptofred](https://github.com/cryptofred))
4 changes: 2 additions & 2 deletions pyhocon/config_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
# For Python 3.0 and later
from urllib.request import urlopen
from urllib.error import HTTPError, URLError
except ImportError:
except ImportError: # pragma: no cover
# Fall back to Python 2's urllib2
from urllib2 import urlopen, HTTPError, URLError

use_urllib2 = True
try:
basestring
except NameError:
except NameError: # pragma: no cover
basestring = str
unicode = str

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def run_tests(self):

setup(
name='pyhocon',
version='0.3.37',
version='0.3.38',
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.',
Expand Down

0 comments on commit 7d87f90

Please sign in to comment.