Skip to content

Commit 5d08816

Browse files
committed
bumped version to 0.3.58 and updated contributors
1 parent 3d64330 commit 5d08816

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

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+
312
# Version 0.3.57
413

514
* Rewrite the logic to resolve package-relative paths so we can remove the "asset" library (@klamann) [#247]

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pyhocon
33

44
[![pypi](http://img.shields.io/pypi/v/pyhocon.png)](https://pypi.python.org/pypi/pyhocon)
55
[![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)
77
[![Downloads](https://img.shields.io/pypi/dm/pyhocon.svg)](https://pypistats.org/packages/pyhocon)
88
[![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)
99
[![License](https://img.shields.io/pypi/l/Pyhocon.svg)](https://pypi.python.org/pypi/pyhocon/)
@@ -381,6 +381,11 @@ assert config == d
381381
- Oliver Nemček [@olii](https://github.com/olii)
382382
- Guillaume George [@LysanderGG](https://github.com/LysanderGG)
383383
- 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)
384389

385390
### Thanks
386391

setup.py

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

2727
setup(
2828
name='pyhocon',
29-
version='0.3.57',
29+
version='0.3.58',
3030
description='HOCON parser for Python',
3131
long_description='pyhocon is a HOCON parser for Python. Additionally we provide a tool (pyhocon) to convert any HOCON '
3232
'content into json, yaml and properties format.',

0 commit comments

Comments
 (0)