diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4f984f9..ac7205d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.2 +current_version = 2.0.3 commit = True tag = True sign_tags = True diff --git a/nextinspace/__init__.py b/nextinspace/__init__.py index a60067f..99543a4 100644 --- a/nextinspace/__init__.py +++ b/nextinspace/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.0.2" +__version__ = "2.0.3" __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.2 + .. deprecated:: 2.0.3 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 4d0b920..c2ede86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ profile = "black" [tool.poetry] name = "nextinspace" -version = "2.0.2" +version = "2.0.3" description = "Never miss a launch." license = "GPL-3.0-or-later" authors = ["Gideon Shaked "]