diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 18550d5..2e9c48c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.4" + ".": "2.0.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c61b85d..0675ea3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.0.5](https://github.com/ShipEngine/shipengine-python/compare/v2.0.4...v2.0.5) (2025-12-16) + + +### Bug Fixes + +* correct typo in linting section of README ([222b293](https://github.com/ShipEngine/shipengine-python/commit/222b2930706476254b2229b72db63f9ec3cffb0a)) + ## [2.0.4](https://github.com/ShipEngine/shipengine-python/compare/v2.0.3...v2.0.4) (2025-12-16) diff --git a/pyproject.toml b/pyproject.toml index a229850..40a6c45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shipengine" -version = "2.0.4" +version = "2.0.5" description = "The official Python library for ShipEngine API." readme = "README.md" authors = ["ShipEngine "] diff --git a/shipengine/__init__.py b/shipengine/__init__.py index e845698..6a4ee49 100644 --- a/shipengine/__init__.py +++ b/shipengine/__init__.py @@ -1,5 +1,5 @@ """ShipEngine SDK.""" -__version__ = "2.0.4" +__version__ = "2.0.5" import logging from logging import NullHandler diff --git a/shipengine/version.py b/shipengine/version.py index f6bb6f4..34c5111 100644 --- a/shipengine/version.py +++ b/shipengine/version.py @@ -1 +1 @@ -__version__ = "2.0.4" +__version__ = "2.0.5"