diff --git a/CHANGES.rst b/CHANGES.rst index 8f51ec2..77da8b0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,13 @@ Changelog .. towncrier release notes start +1.2.0 (2023-08-30) +================== + +- ``Scheduler.spawn()`` now accepts a ``name`` parameter, similar to ``asyncio.create_task()``. (`#385 `_) +- Removed async-timeout dependency on Python 3.11+. (`#443 `_) +- Dropped Python 3.7 support. + 1.1.0 (2022-10-16) ================== diff --git a/aiojobs/__init__.py b/aiojobs/__init__.py index d82812b..394b378 100644 --- a/aiojobs/__init__.py +++ b/aiojobs/__init__.py @@ -10,7 +10,7 @@ from ._job import Job from ._scheduler import ExceptionHandler, Scheduler -__version__ = "1.1.0" +__version__ = "1.2.0" async def create_scheduler(