diff --git a/CHANGELOG.md b/CHANGELOG.md index e56b2b9..fefdb69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.18.1](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.18.1) - 2020-03-13 +- Added data format auto-detection when creating instance with data from filepath or url. +- Fixed `keypath_separator` support when using `from_{format}` methods. + ## [0.18.0](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.18.0) - 2020-02-21 - Added `from_pickle` and `to_pickle` methods. - Added `PickleSerializer`. diff --git a/benedict/metadata.py b/benedict/metadata.py index eb29d8d..c17dcb8 100644 --- a/benedict/metadata.py +++ b/benedict/metadata.py @@ -6,4 +6,4 @@ __description__ = 'python-benedict is a dict subclass with keylist/keypath suppo __email__ = 'fabio.caccamo@gmail.com' __license__ = 'MIT' __title__ = 'benedict' -__version__ = '0.18.0' +__version__ = '0.18.1'