Update `CHANGELOG` and version.

This commit is contained in:
Fabio Caccamo 2022-10-09 15:07:57 +02:00
parent eb04722d08
commit f917417a89
2 changed files with 6 additions and 2 deletions

View File

@ -5,6 +5,10 @@ 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.26.0](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.26.0) - 2022-10-09
- Add `xls` files (`.xlsx`, `.xlsm`, `.xls`) support (read-only). #70 (#122)
- Drop `Python 3.6` support. (#123)
## [0.25.4](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.25.4) - 2022-09-06 ## [0.25.4](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.25.4) - 2022-09-06
- Fix `toml` encoding circular reference error. #110 - Fix `toml` encoding circular reference error. #110

View File

@ -4,10 +4,10 @@ __author__ = "Fabio Caccamo"
__copyright__ = "Copyright (c) 2019-present - Fabio Caccamo" __copyright__ = "Copyright (c) 2019-present - Fabio Caccamo"
__description__ = ( __description__ = (
"python-benedict is a dict subclass with keylist/keypath support, normalized I/O" "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)" " operations (base64, csv, ini, json, pickle, plist, query-string, toml, xls, xml, yaml)"
" and many utilities... for humans, obviously." " and many utilities... for humans, obviously."
) )
__email__ = "fabio.caccamo@gmail.com" __email__ = "fabio.caccamo@gmail.com"
__license__ = "MIT" __license__ = "MIT"
__title__ = "benedict" __title__ = "benedict"
__version__ = "0.25.4" __version__ = "0.26.0"