From cec52d568799e4344ac9b6a8bf2c82eba5a3140e Mon Sep 17 00:00:00 2001 From: SecondThundeR Date: Mon, 5 Sep 2022 12:52:36 +0300 Subject: [PATCH] fix library version --- pyproject.toml | 2 +- shikithon/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5fd88c23..c6b0c8d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shikithon" -version = "1.0.0" +version = "1.0.2" description = "Yet another Python wrapper for Shikimori API" authors = [ "SecondThundeR " diff --git a/shikithon/__init__.py b/shikithon/__init__.py index 35ed7af4..f8b8843b 100644 --- a/shikithon/__init__.py +++ b/shikithon/__init__.py @@ -1,5 +1,5 @@ """Contains package version and some magic for importing API object.""" from shikithon.api import API -__version__ = '1.0.0' +__version__ = '1.0.2' __all__ = ['API']