From d12db8f3b8a37e37bb2b8951f056cb47128b4ab7 Mon Sep 17 00:00:00 2001 From: TAG-Epic Date: Wed, 5 Jul 2023 19:46:41 +0200 Subject: [PATCH] build: prepare for publishing on pypi --- nextcore/__init__.py | 2 +- pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/nextcore/__init__.py b/nextcore/__init__.py index cfa87d71c..903aea0cb 100644 --- a/nextcore/__init__.py +++ b/nextcore/__init__.py @@ -26,5 +26,5 @@ if TYPE_CHECKING: from typing import Final -__version__: Final[str] = "1.0.0a" +__version__: Final[str] = "2.0.0" __all__: Final[tuple[str, ...]] = ("__version__",) diff --git a/pyproject.toml b/pyproject.toml index e4a4932ee..3f23e038c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,10 @@ [tool.poetry] name = "nextcore" -version = "1.0.0a" +version = "2.0.0" description = "A low level Discord API wrapper" authors = ["nextcore developers"] license = "MIT" classifiers = [ - "Private :: Do Not Upload", "Development Status :: 3 - Alpha", "Framework :: AsyncIO", "Framework :: aiohttp",