File tree 4 files changed +15
-4
lines changed
4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
10
# Version 0.3.47
4
11
5
12
* Fixed negative integer parsing [ #185 ]
10
17
11
18
# Version 0.3.45
12
19
13
- * Fixed scientific notation parsing (chunyang-wen) [ #177 ]
20
+ * Fixed scientific notation parsing (@ chunyang-wen ) [ #177 ]
14
21
15
22
# Version 0.3.44
16
23
Original file line number Diff line number Diff line change @@ -353,6 +353,9 @@ Java properties mapping | :x:
353
353
- derkcrezee [ @derkcrezee ] ( https://github.com/derkcrezee )
354
354
- Roee Nizan [ @roee-allegro ] ( https://github.com/roee-allegro )
355
355
- 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 )
356
359
357
360
### Thanks
358
361
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def run_tests(self):
25
25
26
26
setup (
27
27
name = 'pyhocon' ,
28
- version = '0.3.47 ' ,
28
+ version = '0.3.48 ' ,
29
29
description = 'HOCON parser for Python' ,
30
30
long_description = 'pyhocon is a HOCON parser for Python. Additionally we provide a tool (pyhocon) to convert any HOCON '
31
31
'content into json, yaml and properties format.' ,
Original file line number Diff line number Diff line change @@ -183,5 +183,6 @@ def test_substitutions_conversions():
183
183
"""
184
184
converted1 = HOCONConverter .to_hocon (ConfigFactory .parse_string (config_string , resolve = False ))
185
185
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
You can’t perform that action at this time.
0 commit comments