From 24dbf9febf0f1fd7d657d2f8b2f0e4a4f3eda760 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Thu, 29 Dec 2022 15:48:57 +0100 Subject: [PATCH] Update `CHANGELOG` and version. --- CHANGELOG.md | 8 ++++++++ benedict/metadata.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b40fc0..5192608 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ 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.28.0](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.28.0) - 2022-12-29 +- Drop `Python 3.7 support`. +- Replace `str.format` with `f-strings`. +- Remove `python setup.py test` usage. +- Remove encoding pragma. +- Fix `s3_options` option forwarded to `json` decoder. #198 (#204) +- Bump requirements. + ## [0.27.1](https://github.com/fabiocaccamo/python-benedict/releases/tag/0.27.1) - 2022-11-26 - Add `Python 3.11` support. #143 - Add `pre-commit` with `black`, `isort` and `flake8`. diff --git a/benedict/metadata.py b/benedict/metadata.py index 7ab3a6b..21dcea6 100644 --- a/benedict/metadata.py +++ b/benedict/metadata.py @@ -8,4 +8,4 @@ __description__ = ( __email__ = "fabio.caccamo@gmail.com" __license__ = "MIT" __title__ = "benedict" -__version__ = "0.27.1" +__version__ = "0.28.0"