From 1f7285066b151525c369f84adadd0e3d471513c4 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Tue, 22 Dec 2020 13:00:04 +0100 Subject: [PATCH] Updated version and CHANGELOG. --- CHANGELOG.md | 9 +++++++++ benedict/metadata.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d42404..4525857 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ 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.22.3](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.22.3) - 2020-12-22 +- Added `concat` option to merge method. #45 +- Added `sort_keys=True` by default in `JSON` serializer. +- Added `memo` option to clone core method. +- Fixed broken `json.dumps` using cloned instance. #46 + +## [0.22.2](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.22.2) - 2020-11-30 +- Fixed `benedict` `yaml` representer. #43 + ## [0.22.1](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.22.1) - 2020-11-27 - Fixed dump `benedict` object to `yaml` not working correctly. #43 diff --git a/benedict/metadata.py b/benedict/metadata.py index 025082a..4c5dd7b 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.22.2' +__version__ = '0.22.3'