Skip to content

Commit b45532f

Browse files
Release 1.2.0 (#444)
1 parent 205dd5e commit b45532f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
1.2.0 (2023-08-30)
18+
==================
19+
20+
- ``Scheduler.spawn()`` now accepts a ``name`` parameter, similar to ``asyncio.create_task()``. (`#385 <https://github.com/aio-libs/aiojobs/pull/385>`_)
21+
- Removed async-timeout dependency on Python 3.11+. (`#443 <https://github.com/aio-libs/aiojobs/pull/443>`_)
22+
- Dropped Python 3.7 support.
23+
1724
1.1.0 (2022-10-16)
1825
==================
1926

aiojobs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from ._job import Job
1111
from ._scheduler import ExceptionHandler, Scheduler
1212

13-
__version__ = "1.1.0"
13+
__version__ = "1.2.0"
1414

1515

1616
async def create_scheduler(

0 commit comments

Comments
 (0)