diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b6273c7..4378101 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.0 +current_version = 3.0.1 commit = True tag = True sign_tags = True diff --git a/nextinspace/__init__.py b/nextinspace/__init__.py index 172bf64..0fa559b 100644 --- a/nextinspace/__init__.py +++ b/nextinspace/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.0.0" +__version__ = "3.0.1" __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:: 3.0.0 + .. deprecated:: 3.0.1 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 b5b6ec2..5f33592 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ profile = "black" [tool.poetry] name = "nextinspace" -version = "3.0.0" +version = "3.0.1" description = "Never miss a launch." license = "GPL-3.0-or-later" authors = ["Gideon Shaked "]