From 04af98d5f37ce4a88eb53a6d57f5b6b46fa8d2a2 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Tue, 11 Jun 2019 18:41:01 +0200 Subject: [PATCH] Updated version. --- CHANGELOG.md | 24 ++++++++++++++---------- benedict/metadata.py | 4 ++-- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6034e0f..39857c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,23 +5,27 @@ 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.3.1](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.3.1) - 2019-06-11 -- Added dump and dump_items utility methods. +- Added support to key-list as key. +- Fixed `setup.py` requirements installation on Python 2.7. + +## [0.3.1](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.3.1) - 2019-06-11 +- Added `dump` and `dump_items` utility methods. ## [0.3.0](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.3.0) - 2019-06-10 -- Added casting to benedict to all dicts returned by any public method. -- Renamed get_keypaths to keypaths according to keys and values existing methods. +- Added casting to `benedict` to all dicts returned by any public method. +- Renamed `get_keypaths` to `keypaths` according to keys and values existing methods. - Reorganized lib structure to improve scalability. - Added python 2.7 support. - Improved code quality. ## [0.2.0](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.2.0) - 2019-05-20 -- Added 'ok' and 'ko' to parse_bool method. -- Added keypath support to pop method and refactored core methods. -- Added get_keypaths method. -- Added keypath support to fromkeys method. -- Added deepcopy shortcut method. -- Added keypath support to copy method. -- Refactored KeypathDict core methods. +- Improved `parse_bool` method. +- Added keypath support to `pop` method and refactored core methods. +- Added `get_keypaths` method. +- Added keypath support to `fromkeys` method. +- Added `deepcopy` shortcut method. +- Added keypath support to `copy` method. +- Refactored `KeypathDict` core methods. ## [0.1.0](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.1.0) - 2018-05-17 - Released package on pypi. \ No newline at end of file diff --git a/benedict/metadata.py b/benedict/metadata.py index 3d68a10..1fc4254 100644 --- a/benedict/metadata.py +++ b/benedict/metadata.py @@ -2,9 +2,9 @@ __author__ = 'Fabio Caccamo' __copyright__ = 'Copyright (c) 2019 Fabio Caccamo' -__description__ = 'python-benedict is the Python dictionary for humans dealing with evil/complex data.' +__description__ = 'The Python dictionary for humans dealing with evil/complex data.' __email__ = 'fabio.caccamo@gmail.com' __license__ = 'MIT' __title__ = 'benedict' -__version__ = '0.3.1' +__version__ = '0.3.2'