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 "]