Skip to content

Commit ed98149

Browse files
Release 1.1.0 (#357)
1 parent 2bef3f0 commit ed98149

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

CHANGES.rst

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

1515
.. towncrier release notes start
1616
17+
1.1.0 (2022-10-16)
18+
==================
19+
20+
Features
21+
--------
22+
23+
- Complete type annotations have been added. (`#352 <https://github.com/aio-libs/aiojobs/pull/352>`_)
24+
- ``Scheduler`` can (and should be) instantiated directly. (`#353 <https://github.com/aio-libs/aiojobs/pull/353>`_)
25+
- ``Job`` is also exported by default now, to aid type annotations. (`#355 <https://github.com/aio-libs/aiojobs/pull/355>`_)
26+
27+
Bugfixes
28+
--------
29+
30+
- Fix scheduler blocking forever when pending limit is reached. (`#135 <https://github.com/aio-libs/aiojobs/pull/135>`_)
31+
- Fix @atomic wrapper not passing ``self`` to methods. (`#344 <https://github.com/aio-libs/aiojobs/pull/344>`_)
32+
- ``Job.wait()`` now returns the task value if the job is already closed. (`#343 <https://github.com/aio-libs/aiojobs/pull/343>`_)
33+
- Fix ``exception_handler`` being called twice in some situations. (`#354 < https://github.com/aio-libs/aiojobs/pull/354`_)
34+
35+
Deprecations and Removals
36+
-------------------------
37+
38+
- Dropped Python 3.6 support. (`#338 <https://github.com/aio-libs/aiojobs/pull/338>`_)
39+
- ``create_scheduler()`` is deprecated and will be removed in v2. (`#353 <https://github.com/aio-libs/aiojobs/pull/353>`_)
40+
41+
1742
1.0.0 (2021-11-09)
1843
==================
1944

CHANGES/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/97.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

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.0.0"
13+
__version__ = "1.1.0"
1414

1515

1616
async def create_scheduler(

0 commit comments

Comments
 (0)