Skip to content

Commit

Permalink
Bump to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 29, 2024
1 parent 42b7913 commit b0023f8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changes
=======

1.1.0 (2024-10-30)
------------------

- Drop Python 3.7 and 3.8 support

- janus now works on Python 3.9-3.13

- Reexport SyncQueueEmpty, SyncQueueFull, AsyncQueueEmpty, and AsyncQueueFull names #680

1.0.0 (2021-12-17)
------------------

Expand Down
2 changes: 1 addition & 1 deletion janus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from queue import Full as SyncQueueFull
from typing import Any, Callable, Generic, Optional, Protocol, TypeVar

__version__ = "1.0.0"
__version__ = "1.1.0"
__all__ = (
"Queue",
"PriorityQueue",
Expand Down

0 comments on commit b0023f8

Please sign in to comment.