diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a93ce47..ed84ebc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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.25.2](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.25.2) - 2022-07-15 +- Fixed `orjson` compatibility. #102 +- Fixed `swap` between dict items. +- Fixed `deepcopy` with pointer. +- Bumped requirements. + ## [0.25.1](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.25.1) - 2022-04-27 - Fixed broken `yaml` serialization with `benedict` attributes. #89 - Fixed `flatten` not working when separator is equal to `keypath_separator`. #88 diff --git a/benedict/metadata.py b/benedict/metadata.py index ff7ec785..e059ce3e 100644 --- a/benedict/metadata.py +++ b/benedict/metadata.py @@ -10,4 +10,4 @@ __email__ = "fabio.caccamo@gmail.com" __license__ = "MIT" __title__ = "benedict" -__version__ = "0.25.1" +__version__ = "0.25.2"