File tree Expand file tree Collapse file tree 4 files changed +26
-3
lines changed
Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Original file line number Diff line number Diff 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+
17421.0.0 (2021-11-09)
1843==================
1944
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1010from ._job import Job
1111from ._scheduler import ExceptionHandler , Scheduler
1212
13- __version__ = "1.0 .0"
13+ __version__ = "1.1 .0"
1414
1515
1616async def create_scheduler (
You can’t perform that action at this time.
0 commit comments