diff --git a/pyproject.toml b/pyproject.toml index 75eae25..5432db9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,16 +1,13 @@ [tool.poetry] name = "unkey.py" -version = "0.4.0" +version = "0.4.1" description = "An asynchronous Python SDK for unkey.dev." authors = ["Jonxslays"] license = "GPL-3.0-only" readme = "README.md" homepage = "https://github.com/Jonxslays/unkey.py" repository = "https://github.com/Jonxslays/unkey.py" -packages = [ - { include = "unkey" }, - { include = "unkey/py.typed" }, -] +packages = [{ include = "unkey" }, { include = "unkey/py.typed" }] classifiers = [ # "Development Status :: 1 - Planning", # "Development Status :: 2 - Pre-Alpha", diff --git a/unkey/__init__.py b/unkey/__init__.py index c0033e4..f19df45 100644 --- a/unkey/__init__.py +++ b/unkey/__init__.py @@ -3,7 +3,7 @@ from typing import Final __packagename__: Final[str] = "unkey.py" -__version__: Final[str] = "0.4.0" +__version__: Final[str] = "0.4.1" __author__: Final[str] = "Jonxslays" __copyright__: Final[str] = "2023-present Jonxslays" __description__: Final[str] = "An asynchronous Python SDK for unkey.dev."