From 6e63066f9236783e7e34388879dce28620aa0d95 Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Wed, 15 Oct 2025 08:31:39 -0400 Subject: [PATCH] chore: prep for 3.5.0 release --- HISTORY.rst | 17 +++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index f2c9252..874c664 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,23 @@ History ======= +3.5.0 (October 15th, 2025) +-------------------------- + +Backwards incompatibel changes: + +* Drop support for Python 3.9. (#282) + +* Deprecate Everett. + + I encourage you to switch from Everett to pydantic-settings. + See https://github.com/willkg/everett/issues/278 + +Fixes and features: + +* Add support for Python 3.14. (#283) + + 3.4.0 (October 30th, 2024) -------------------------- diff --git a/pyproject.toml b/pyproject.toml index 80fbdee..855bb9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "everett" description = "Configuration library for Python applications" -version = "3.4.0" +version = "3.5.0" readme = "README.rst" keywords = ["conf", "config", "configuration", "ini", "env", "yaml"] authors = [{name = "Will Kahn-Greene"}]