Skip to content

Commit

Permalink
Release 1.2.0 (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Aug 30, 2023
1 parent 205dd5e commit b45532f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/aio-libs/aiojobs/pull/385>`_)
- Removed async-timeout dependency on Python 3.11+. (`#443 <https://github.com/aio-libs/aiojobs/pull/443>`_)
- Dropped Python 3.7 support.

1.1.0 (2022-10-16)
==================

Expand Down
2 changes: 1 addition & 1 deletion aiojobs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit b45532f

Please sign in to comment.