From cea1a67d64189be54cf479efc5ec42dd080993c3 Mon Sep 17 00:00:00 2001 From: Benex254 Date: Wed, 14 Aug 2024 20:06:59 +0300 Subject: [PATCH] chore: bump version --- fastanime/__init__.py | 2 +- fastanime/libs/anime_provider/animepahe/api.py | 1 + pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/fastanime/__init__.py b/fastanime/__init__.py index d51ff55..cab7eb4 100644 --- a/fastanime/__init__.py +++ b/fastanime/__init__.py @@ -6,7 +6,7 @@ if sys.version_info < (3, 10): ) # noqa: F541 -__version__ = "v1.1.0" +__version__ = "v1.1.5" APP_NAME = "FastAnime" AUTHOR = "Benex254" diff --git a/fastanime/libs/anime_provider/animepahe/api.py b/fastanime/libs/anime_provider/animepahe/api.py index 0468b20..5254917 100644 --- a/fastanime/libs/anime_provider/animepahe/api.py +++ b/fastanime/libs/anime_provider/animepahe/api.py @@ -92,6 +92,7 @@ class AnimePaheApi(AnimeProvider): if ep_data := response.json().get("data"): data["data"].extend(ep_data) if data["next_page_url"]: + # TODO: Refine this time.sleep( random.choice( [ diff --git a/pyproject.toml b/pyproject.toml index db4c1ae..d17b175 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fastanime" -version = "1.1.0.dev1" +version = "1.1.5.dev1" description = "A browser anime site experience from the terminal" authors = ["Benextempest "] license = "UNLICENSE"