diff --git a/CHANGELOG.md b/CHANGELOG.md index 9afdc6d..eb60752 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.27.0](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.27.0) - 2022-10-12 +- Add `s3` support to I/O operations. #17 (#126) +- Fix subclasses type. #115 (#124) ## [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) diff --git a/benedict/metadata.py b/benedict/metadata.py index 9251851..6d42484 100644 --- a/benedict/metadata.py +++ b/benedict/metadata.py @@ -10,4 +10,4 @@ __description__ = ( __email__ = "fabio.caccamo@gmail.com" __license__ = "MIT" __title__ = "benedict" -__version__ = "0.26.0" +__version__ = "0.27.0"