From 97081ed70f1b29a2dd9013b50164e2fde1c405a7 Mon Sep 17 00:00:00 2001 From: Joshua Semar Date: Tue, 16 Dec 2025 13:13:16 -0600 Subject: [PATCH] chore: release 2.0.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ pyproject.toml | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b870c5e..895bf0e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.2" + ".": "2.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ce1df6..6696b3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [2.0.0](https://github.com/ShipEngine/shipengine-python/compare/v1.0.2...v2.0.0) (2025-12-16) + +### ⚠ BREAKING CHANGES + +* **Python Support**: Dropped support for Python 3.7, 3.8, and 3.9. Minimum required Python version is now 3.10. + +### Features + +* Add support for Python 3.10, 3.11, 3.12, and 3.13 ([7559751](https://github.com/ShipEngine/shipengine-python/commit/75597510aa212c086077a03d7513835569be820a)) +* Update CI/CD workflows to use current GitHub Actions versions +* Update package dependencies for Python 3.10+ compatibility + +### Dependencies + +* Update aiohttp from ^3.7.4 to ^3.9.0 +* Update pytest from >=5.0 to ^7.0.0 +* Update black from ^20.8b1 to ^22.0.0 +* Update flake8 from ^3.8.4 to ^6.0.0 + ## [1.0.0](https://www.github.com/ShipEngine/shipengine-python/compare/v1.0.0...v1.0.0) (2021-08-11) ### Miscellaneous Chores diff --git a/pyproject.toml b/pyproject.toml index a53efc7..59d75ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shipengine" -version = "1.0.2" +version = "2.0.0" description = "The official Python library for ShipEngine API." readme = "README.md" authors = ["ShipEngine "]