diff --git a/pyproject.toml b/pyproject.toml index 7fbe12b4..82759fa0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shikithon" -version = "2.5" +version = "2.5.1" description = "Yet another Python wrapper for Shikimori API" authors = [ "SecondThundeR " diff --git a/shikithon/__init__.py b/shikithon/__init__.py index 41333103..d98972b4 100644 --- a/shikithon/__init__.py +++ b/shikithon/__init__.py @@ -2,5 +2,5 @@ from .api import ShikimoriAPI from .store import JSONStore, MemoryStore, NullStore, Store -__version__ = '2.5' +__version__ = '2.5.1' __all__ = ['ShikimoriAPI', 'Store', 'NullStore', 'MemoryStore', 'JSONStore']