Skip to content

Commit b0023f8

Browse files
committed
Bump to 1.1.0
1 parent 42b7913 commit b0023f8

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGES.rst

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changes
22
=======
33

4+
1.1.0 (2024-10-30)
5+
------------------
6+
7+
- Drop Python 3.7 and 3.8 support
8+
9+
- janus now works on Python 3.9-3.13
10+
11+
- Reexport SyncQueueEmpty, SyncQueueFull, AsyncQueueEmpty, and AsyncQueueFull names #680
12+
413
1.0.0 (2021-12-17)
514
------------------
615

janus/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from queue import Full as SyncQueueFull
1010
from typing import Any, Callable, Generic, Optional, Protocol, TypeVar
1111

12-
__version__ = "1.0.0"
12+
__version__ = "1.1.0"
1313
__all__ = (
1414
"Queue",
1515
"PriorityQueue",

0 commit comments

Comments
 (0)