From 8e7814cbe75f5f09103454d16664f3fe013eb670 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Sun, 1 Aug 2021 12:12:22 +0200 Subject: [PATCH] Updated CHANGELOG and version. --- CHANGELOG.md | 3 +++ benedict/metadata.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0be497a..202eade 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.24.1](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.24.1) - 2021-08-01 +- Fixed `json.dumps()` when `benedict` is initialized with an empty dict. #57 + ## [0.24.0](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.24.0) - 2021-05-04 - Added `ini` format support. #36 #40 - Added `python 3.9` to CI (tox, travis and GitHub actions). diff --git a/benedict/metadata.py b/benedict/metadata.py index fb926d9..13f17bd 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.24.0' +__version__ = '0.24.1'