From d9ada432a4efd991dc510d9517baa0b4e297e777 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Tue, 22 Dec 2020 13:12:03 +0100 Subject: [PATCH] Updated version and CHANGELOG. --- CHANGELOG.md | 3 +++ benedict/metadata.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4525857..cdc5557 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ 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.4](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.22.4) - 2020-12-22 +- Removed `sort_keys=True` by default in `JSON` serializer. + ## [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. diff --git a/benedict/metadata.py b/benedict/metadata.py index 4c5dd7b..096d597 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.3' +__version__ = '0.22.4'