diff --git a/docs/conf.py b/docs/conf.py index 37b3e8a..01461af 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,7 +4,7 @@ project = "jungle-scout" copyright = "2024, Jungle Scout " # noqa: A001 author = "Jungle Scout " -release = "0.2.1" +release = "0.2.2" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 0408530..a2e29b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ name = "junglescout-client" packages = [ { include = "junglescout", from = "src" }, ] -version = "0.2.1" +version = "0.2.2" license = "MIT" authors = ["Jungle Scout "] description = "Jungle Scout API Client" diff --git a/src/junglescout/__init__.py b/src/junglescout/__init__.py index 9099368..6b88f0b 100644 --- a/src/junglescout/__init__.py +++ b/src/junglescout/__init__.py @@ -4,6 +4,6 @@ """ __all__ = ["Client"] -__version__ = "0.2.1" +__version__ = "0.2.2" from .client import Client