From 194c7348723b96cb082d7f3c05e9ee76740be76c Mon Sep 17 00:00:00 2001 From: Felipe Freitag Date: Tue, 15 Sep 2026 18:07:21 -0300 Subject: [PATCH] chore: bump version to 2.46.0 Advertises Python 3.12, 3.13 and 3.14 on PyPI. CI has tested those versions since #285 and the release workflow builds on 3.14. The Python 3.7 floor is unchanged. --- resend/version.py | 2 +- setup.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/resend/version.py b/resend/version.py index edafb86..f03beee 100644 --- a/resend/version.py +++ b/resend/version.py @@ -1,4 +1,4 @@ -__version__ = "2.45.1" +__version__ = "2.46.0" def get_version() -> str: diff --git a/setup.py b/setup.py index 5ba528c..3db7805 100644 --- a/setup.py +++ b/setup.py @@ -42,5 +42,8 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ], )