diff --git a/CHANGELOG.md b/CHANGELOG.md index e87ea0d..7bd5453 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ +## 0.11.1 + +([Full Changelog](https://github.com/y-crdt/ypy-websocket/compare/v0.11.0...55b5fb6032b8ee03f41601ea130f6eb5d29edcf2)) + +### Merged PRs + +- Type get_room as possible coroutine [#80](https://github.com/y-crdt/ypy-websocket/pull/80) ([@davidbrochart](https://github.com/davidbrochart)) +- Fix documentation link [#79](https://github.com/y-crdt/ypy-websocket/pull/79) ([@davidbrochart](https://github.com/davidbrochart)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/y-crdt/ypy-websocket/graphs/contributors?from=2023-06-16&to=2023-06-19&type=c)) + +[@davidbrochart](https://github.com/search?q=repo%3Ay-crdt%2Fypy-websocket+involves%3Adavidbrochart+updated%3A2023-06-16..2023-06-19&type=Issues) + + + ## 0.11.0 ([Full Changelog](https://github.com/y-crdt/ypy-websocket/compare/v0.10.0...17a2e147b34dea8b46ced173417df1f386d957ee)) @@ -16,8 +33,6 @@ [@davidbrochart](https://github.com/search?q=repo%3Ay-crdt%2Fypy-websocket+involves%3Adavidbrochart+updated%3A2023-06-01..2023-06-16&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ay-crdt%2Fypy-websocket+involves%3Afcollonval+updated%3A2023-06-01..2023-06-16&type=Issues) - - ## 0.10.0 ([Full Changelog](https://github.com/y-crdt/ypy-websocket/compare/v0.9.0...49a45305416f70a5c7c969f1017e5b3e871db812)) diff --git a/ypy_websocket/__init__.py b/ypy_websocket/__init__.py index 13c7454..ed8fb5a 100644 --- a/ypy_websocket/__init__.py +++ b/ypy_websocket/__init__.py @@ -3,4 +3,4 @@ from .websocket_server import WebsocketServer, YRoom # noqa from .yutils import YMessageType # noqa -__version__ = "0.11.0" +__version__ = "0.11.1"