diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 47fb725..af6dd8b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.2" + ".": "2.0.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f2d6607..df1e3fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [2.0.3](https://github.com/ShipEngine/shipengine-python/compare/v2.0.2...v2.0.3) (2025-12-16) + + +### Bug Fixes + +* update GitHub workflow badge and resolve CD PyYAML compatibility issue ([5b634ca](https://github.com/ShipEngine/shipengine-python/commit/5b634ca5862ddaadd3e527d91b2b55314a158e98)) +* update GitHub workflow badge URL and fix PyYAML compatibility ([65cc2a3](https://github.com/ShipEngine/shipengine-python/commit/65cc2a3a3e0e3ee6d298c417bed2aba01c3b9d5e)) + ## [2.0.2](https://github.com/ShipEngine/shipengine-python/compare/v2.0.1...v2.0.2) (2025-12-16) diff --git a/pyproject.toml b/pyproject.toml index d15d97b..83f82f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shipengine" -version = "2.0.2" +version = "2.0.3" description = "The official Python library for ShipEngine API." readme = "README.md" authors = ["ShipEngine "] diff --git a/shipengine/__init__.py b/shipengine/__init__.py index 1e3470c..a6c52d3 100644 --- a/shipengine/__init__.py +++ b/shipengine/__init__.py @@ -1,5 +1,5 @@ """ShipEngine SDK.""" -__version__ = "2.0.2" +__version__ = "2.0.3" import logging from logging import NullHandler diff --git a/shipengine/version.py b/shipengine/version.py index 0309ae2..5fa9130 100644 --- a/shipengine/version.py +++ b/shipengine/version.py @@ -1 +1 @@ -__version__ = "2.0.2" +__version__ = "2.0.3"