File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ # Version 0.3.58
4
+
5
+ * Adding the resolve method to resolve substitution keys in 1 config tree with another config tree (@borissmidt ) [ #266 ]
6
+ * Support serializing timedelta and relativedelta to string (hocon, json etc.) (@gabis-precog ) [ #263 ]
7
+ * Upgrade to GitHub-native Dependabot (@dependabot-preview ) [ #260 ]
8
+ * Process substitution overrides in order (@JettJones ) [ #257 ]
9
+ * Fix duration parsing in lists (@olii ) [ #255 ]
10
+ * Add support for Python 3.9 and fix deprecation warning (@olii ) [ #254 ]
11
+
3
12
# Version 0.3.57
4
13
5
14
* Rewrite the logic to resolve package-relative paths so we can remove the "asset" library (@klamann ) [ #247 ]
Original file line number Diff line number Diff line change 3
3
4
4
[ ![ pypi] ( http://img.shields.io/pypi/v/pyhocon.png )] ( https://pypi.python.org/pypi/pyhocon )
5
5
[ ![ Supported Python Versions] ( https://img.shields.io/pypi/pyversions/Pyhocon.svg )] ( https://pypi.python.org/pypi/pyhocon/ )
6
- [ ![ Build Status] ( https://travis-ci.org /chimpler/pyhocon.svg )] ( https://travis-ci.org /chimpler/pyhocon )
6
+ [ ![ Build Status] ( https://travis-ci.com /chimpler/pyhocon.svg )] ( https://travis-ci.com /chimpler/pyhocon )
7
7
[ ![ Downloads] ( https://img.shields.io/pypi/dm/pyhocon.svg )] ( https://pypistats.org/packages/pyhocon )
8
8
[ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/684cdd4d82734702ac612bf8b25fc5a0 )] ( https://www.codacy.com/app/francois-dangngoc/pyhocon?utm_source=github.com& ; utm_medium=referral& ; utm_content=chimpler/pyhocon& ; utm_campaign=Badge_Grade )
9
9
[ ![ License] ( https://img.shields.io/pypi/l/Pyhocon.svg )] ( https://pypi.python.org/pypi/pyhocon/ )
@@ -381,6 +381,11 @@ assert config == d
381
381
- Oliver Nemček [ @olii ] ( https://github.com/olii )
382
382
- Guillaume George [ @LysanderGG ] ( https://github.com/LysanderGG )
383
383
- Sebastian Straub [ @klamann ] ( https://github.com/klamann )
384
+ - Oliver Nemček [ @olii ] ( https://github.com/olii )
385
+ - Jett Jones [ @JettJones ] ( https://github.com/JettJones )
386
+ - Gabriel Shaar [ @gabis-precog ] ( https://github.com/gabis-precog )
387
+ - Boris Smidt [ @borissmidt ] ( https://github.com/borissmidt )
388
+ - Scott Johnson [ @scottj97 ] ( https://github.com/scottj97 )
384
389
385
390
### Thanks
386
391
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def run_tests(self):
26
26
27
27
setup (
28
28
name = 'pyhocon' ,
29
- version = '0.3.57 ' ,
29
+ version = '0.3.58 ' ,
30
30
description = 'HOCON parser for Python' ,
31
31
long_description = 'pyhocon is a HOCON parser for Python. Additionally we provide a tool (pyhocon) to convert any HOCON '
32
32
'content into json, yaml and properties format.' ,
You can’t perform that action at this time.
0 commit comments