diff --git a/pyproject.toml b/pyproject.toml index 22260f1..775c3e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ readme = "README.md" repository = "https://github.com/bluetooth-devices/dbus-fast" documentation = "https://dbus-fast.readthedocs.io" classifiers = [ - "Development Status :: 2 - Pre-Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Natural Language :: English", "Operating System :: OS Independent", @@ -45,7 +45,7 @@ pytest-asyncio = "^0.19.0" [tool.semantic_release] branch = "main" version_toml = "pyproject.toml:tool.poetry.version" -version_variable = "src/dbus_fast/__init__.py:__version__" +version_variable = "src/dbus_fast/__version__.py:__version__" build_command = "pip install poetry && poetry build" [tool.pytest.ini_options] diff --git a/src/dbus_fast/__version__.py b/src/dbus_fast/__version__.py index fe54c85..1bdd7b7 100644 --- a/src/dbus_fast/__version__.py +++ b/src/dbus_fast/__version__.py @@ -1,8 +1,10 @@ __title__ = "dbus_fast" -__description__ = "A zero-dependency DBus library for Python with asyncio support" -__url__ = "https://github.com/altdesktop/python-dbus-fast" -__version__ = "0.2.3" -__author__ = "Tony Crisci" -__author_email__ = "tony@dubstepdish.com" +__description__ = ( + "A performant zero-dependency DBus library for Python with asyncio support" +) +__url__ = "https://github.com/bluetooth-devices/dbus-fast" +__version__ = "1.0.0" +__author__ = "Bluetooth Devices authors, Tony Crisci" +__author_email__ = "bluetooth@koston.org" __license__ = "MIT" -__copyright__ = "Copyright 2019 Tony Crisci" +__copyright__ = "Copyright 2022 Bluetooth Devices authors, 2019 Tony Crisci"