From 702556d43a470064f65774379b4ed911247e0dce Mon Sep 17 00:00:00 2001 From: SecondThundeR Date: Wed, 26 Jul 2023 23:31:57 +0300 Subject: [PATCH] chore: bump version to 2.5.5 --- pyproject.toml | 2 +- shikithon/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index eab921d4..d3849832 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shikithon" -version = "2.5.4" +version = "2.5.5" description = "Yet another Python wrapper for Shikimori API" authors = ["SecondThundeR "] license = "MIT" diff --git a/shikithon/__init__.py b/shikithon/__init__.py index 985fafe2..6c11f7db 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.4' +__version__ = '2.5.5' __all__ = ['ShikimoriAPI', 'Store', 'NullStore', 'MemoryStore', 'JSONStore']