Skip to content

Commit d8670ad

Browse files
committed
added committers and bumped version to 0.3.48
1 parent 3bfe203 commit d8670ad

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
# Version 0.3.48
4+
5+
* Support conversion of numerically-index objects to arrays (a.1 = 4) (@lune-sta) [#189]
6+
* Handle ConfigValues and ConfigSubstitution in HOCONConverter.to_hocon (@ChristopheDuong) [#192]
7+
* Fix raising of ConfigException for get_int() and get_float() (@ElkMonster) [#188]
8+
* Fixed Flake8 error for Python 2.7
9+
310
# Version 0.3.47
411

512
* Fixed negative integer parsing [#185]
@@ -10,7 +17,7 @@
1017

1118
# Version 0.3.45
1219

13-
* Fixed scientific notation parsing (chunyang-wen) [#177]
20+
* Fixed scientific notation parsing (@chunyang-wen) [#177]
1421

1522
# Version 0.3.44
1623

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,9 @@ Java properties mapping | :x:
353353
- derkcrezee [@derkcrezee](https://github.com/derkcrezee)
354354
- Roee Nizan [@roee-allegro](https://github.com/roee-allegro)
355355
- Samuel Bible [@sambible](https://github.com/sambible)
356+
- Christophe Duong [@ChristopheDuong](https://github.com/ChristopheDuong)
357+
- lune* [@lune-sta](https://github.com/lune-sta)
358+
- Sascha [@ElkMonster](https://github.com/ElkMonster)
356359

357360
### Thanks
358361

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def run_tests(self):
2525

2626
setup(
2727
name='pyhocon',
28-
version='0.3.47',
28+
version='0.3.48',
2929
description='HOCON parser for Python',
3030
long_description='pyhocon is a HOCON parser for Python. Additionally we provide a tool (pyhocon) to convert any HOCON '
3131
'content into json, yaml and properties format.',

tests/test_tool.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -183,5 +183,6 @@ def test_substitutions_conversions():
183183
"""
184184
converted1 = HOCONConverter.to_hocon(ConfigFactory.parse_string(config_string, resolve=False))
185185
converted2 = HOCONConverter.to_hocon(ConfigFactory.parse_string(converted1, resolve=False))
186-
assert [line.strip() for line in converted1.split('\n') if line.strip()] \
187-
== [line.strip() for line in converted2.split('\n') if line.strip()]
186+
line1_tokens = [line.strip() for line in converted1.split('\n') if line.strip()]
187+
line2_tokens = [line.strip() for line in converted2.split('\n') if line.strip()]
188+
assert line1_tokens == line2_tokens

0 commit comments

Comments
 (0)