From 41f21ddda2033c6299062d13569bf622c7ef84ed Mon Sep 17 00:00:00 2001 From: Gideon Shaked Date: Fri, 8 Jul 2022 21:57:18 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.4=20=E2=86=92=202.0.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- nextinspace/__init__.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8bce855..7327dca 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.4 +current_version = 2.0.5 commit = True tag = True sign_tags = True diff --git a/nextinspace/__init__.py b/nextinspace/__init__.py index fabe89a..d67ef27 100644 --- a/nextinspace/__init__.py +++ b/nextinspace/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.0.4" +__version__ = "2.0.5" __all__ = ["nextinspace", "next_launch", "next_event"] import typing @@ -133,7 +133,7 @@ def nextinspace(num_items: int, include_launcher: bool = False) -> Tuple[Union[L once for the next *n* :class:`Events `, and once for the next *n* :class:`Launches `, and merge the queries into a sorted form. **As such, this function may be slower than anticipated.** 🙁 - .. deprecated:: 2.0.4 + .. deprecated:: 2.0.5 Because the filter by time function of the LL2 API is currently broken, **upcoming means beyond and including today**. """ diff --git a/pyproject.toml b/pyproject.toml index 5fa5654..64a9571 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ profile = "black" [tool.poetry] name = "nextinspace" -version = "2.0.4" +version = "2.0.5" description = "Never miss a launch." license = "GPL-3.0-or-later" authors = ["Gideon Shaked "]