Updated version and CHANGELOG.

This commit is contained in:
Fabio Caccamo 2021-01-19 11:58:53 +01:00
parent 0ca7599841
commit 0282ddbb50
2 changed files with 6 additions and 2 deletions

View File

@ -4,6 +4,10 @@ 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.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.
## [0.23.1](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.23.1) - 2021-01-14
- Fixed `get_int_list` with single value.

View File

@ -1,9 +1,9 @@
# -*- coding: utf-8 -*-
__author__ = 'Fabio Caccamo'
__copyright__ = 'Copyright (c) 2019-2020 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.'
__email__ = 'fabio.caccamo@gmail.com'
__license__ = 'MIT'
__title__ = 'benedict'
__version__ = '0.23.1'
__version__ = '0.23.2'