Fixed
- `send_message()` is changed to raise `ConnectionClosed` when a close
handshake is in progress. Previously, it would silently ignore
the call, which was an oversight, given that `ConnectionClosed` is
defined to cover connections "closed or in the process of closing".
Notably, this fixes `send_message()` leaking a wsproto `LocalProtocolError`
with wsproto >= 1.2.0.
([175](https://github.com/python-trio/trio-websocket/issues/175))
Released as a minor version increment, since code calling `send_message()`
is expected to handle `ConnectionClosed` anyway.