From 1532a80f939c03591de55c5f85077829e43ae4d6 Mon Sep 17 00:00:00 2001 From: SecondThundeR Date: Sat, 11 Feb 2023 15:20:31 +0300 Subject: [PATCH] fix: forgot to change package version :( --- pyproject.toml | 2 +- shikithon/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f34dddb1..8192901e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shikithon" -version = "2.2.1" +version = "2.3.1" description = "Yet another Python wrapper for Shikimori API" authors = [ "SecondThundeR " diff --git a/shikithon/__init__.py b/shikithon/__init__.py index 11568817..8ab6d99f 100644 --- a/shikithon/__init__.py +++ b/shikithon/__init__.py @@ -5,5 +5,5 @@ from .store import NullStore from .store import Store -__version__ = '2.2.1' +__version__ = '2.3.1' __all__ = ['ShikimoriAPI', 'Store', 'NullStore', 'MemoryStore', 'JSONStore']