From 45413055ed332de40dfb9670dabfd3c421023ef1 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Tue, 4 May 2021 23:43:33 +0200 Subject: [PATCH] Updated version and CHANGELOG. --- CHANGELOG.md | 7 +++++++ benedict/metadata.py | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e515e4..0be497a 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.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). +- Fixed `to_toml` circular reference error. #53 +- Updated `ftfy` requirement version depending on `python` version. +- Updated (improved) `QueryStringSerializer` regex. + ## [0.23.2](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.23.2) - 2021-01-19 - Fixed `merge` method lists concat when merging nested dicts. #48 - Fixed `BaseDict` initialized with `BaseDict` subclass argument. diff --git a/benedict/metadata.py b/benedict/metadata.py index 280eb71..fb926d9 100644 --- a/benedict/metadata.py +++ b/benedict/metadata.py @@ -2,8 +2,8 @@ __author__ = 'Fabio Caccamo' __copyright__ = 'Copyright (c) 2019-present - Fabio Caccamo' -__description__ = 'python-benedict is a dict subclass with keylist/keypath support, I/O shortcuts (base64, csv, json, pickle, plist, query-string, toml, xml, yaml) and many utilities... for humans, obviously.' +__description__ = 'python-benedict is a dict subclass with keylist/keypath support, normalized I/O operations (base64, csv, ini, json, pickle, plist, query-string, toml, xml, yaml) and many utilities... for humans, obviously.' __email__ = 'fabio.caccamo@gmail.com' __license__ = 'MIT' __title__ = 'benedict' -__version__ = '0.23.2' +__version__ = '0.24.0'