From b49b7e99eee93c7d83829aa7d1d907057087997b Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Fri, 11 Sep 2020 15:17:12 +0200 Subject: [PATCH] Updated version and CHANGELOG. --- CHANGELOG.md | 7 +++++++ benedict/metadata.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b19721..9a655c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.19.0](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.19.0) - 2020-09-11 +- Added `plist` format support. +- Enforced `IODict` initial check when using filepath or data-string. +- Improved `KeyError` messages. PR #28 +- Added encoding optional argument to `io_util.read_file` and `io_util.write_file`. +- Fixed python 3.5/3.6 I/O encoding issue. + ## [0.18.2](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.18.2) - 2020-09-02 - Added `find` method. #23 - Added `overwrite` option support to merge method. #24 diff --git a/benedict/metadata.py b/benedict/metadata.py index b873725..397fb5d 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.2' +__version__ = '0.19.0'