Skip to content

Commit 84dd715

Browse files
committed
version 0.10.0
closes #173
1 parent 3f90b0e commit 84dd715

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release history
22

3+
## trio-websocket 0.10.0 (2023-03-1)
4+
### Fixed
5+
- avoid MultiError warnings with trio >= 0.22
6+
### Changed
7+
- drop support for Python 3.5, 3.6
8+
39
## trio-websocket 0.9.2 (2021-02-05)
410
### Fixed
511
- the server will now correctly close the TCP stream on a CloseConnection event

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ lint:
1515

1616
publish:
1717
rm -fr build dist .egg trio_websocket.egg-info
18-
$(PYTHON) setup.py sdist
18+
$(PYTHON) -m build
19+
twine check dist/*
1920
twine upload dist/*
2021

2122
# requirements-dev.txt will only be regenerated when PIP_COMPILE_ARGS is not

trio_websocket/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.10.0-dev'
1+
__version__ = '0.10.0'

0 commit comments

Comments
 (0)