From b8d52101a8f558b8e7d002431f731f151fe07995 Mon Sep 17 00:00:00 2001 From: SecondThundeR Date: Mon, 7 Nov 2022 02:15:34 +0300 Subject: [PATCH] chore: bump package version to 2.0.0 --- pyproject.toml | 2 +- shikithon/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dcd93ac7..75a177dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shikithon" -version = "2.0.0-beta.6" +version = "2.0.0" description = "Yet another Python wrapper for Shikimori API" authors = [ "SecondThundeR " diff --git a/shikithon/__init__.py b/shikithon/__init__.py index a38bcb10..f0e02c10 100644 --- a/shikithon/__init__.py +++ b/shikithon/__init__.py @@ -1,5 +1,5 @@ """Contains package version and some magic for importing API object.""" from .api import ShikimoriAPI -__version__ = '2.0.0-beta.6' +__version__ = '2.0.0' __all__ = ['ShikimoriAPI']