From 999066c2f6c5dc8d4c1f38d43dacde9d132ec099 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Tue, 5 Mar 2024 00:23:48 +0100 Subject: [PATCH] Update `CHANGELOG` and version. --- CHANGELOG.md | 5 +++++ benedict/metadata.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 125b4fe..24df8e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.33.2](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.33.2) - 2024-03-05 +- Fix `clean` method not working on nested dicts. #383 +- Enforce top level keys check in `merge` method. #367 +- Bump requirements and `pre-commit` hooks. + ## [0.33.1](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.33.1) - 2023-12-27 - Fix calling `from_xls` passing custom options. #355 - Replace `Black` and `isort` with `Ruff-format`. diff --git a/benedict/metadata.py b/benedict/metadata.py index 6aaa5a3..275d5eb 100644 --- a/benedict/metadata.py +++ b/benedict/metadata.py @@ -8,4 +8,4 @@ __email__ = "fabio.caccamo@gmail.com" __license__ = "MIT" __title__ = "benedict" -__version__ = "0.33.1" +__version__ = "0.33.2"