From 9f937da1104b4f57fb469b851f7dac7de55006e8 Mon Sep 17 00:00:00 2001 From: SecondThundeR Date: Fri, 8 Jul 2022 22:12:55 +0300 Subject: [PATCH] bump version to 0.7.0 --- pyproject.toml | 2 +- shikithon/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index caf32564..0bd2ee84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shikithon" -version = "0.6.0" +version = "0.7.0" description = "Yet another Python wrapper for Shikimori API" authors = [ "SecondThundeR " diff --git a/shikithon/__init__.py b/shikithon/__init__.py index 71d58a8e..9ececb85 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__ = '0.6.0' +__version__ = '0.7.0' __all__ = ['API']