diff --git a/CHANGELOG.md b/CHANGELOG.md index 0244a3e..b3ac5c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 0.8.4 + +([Full Changelog](https://github.com/y-crdt/ypy-websocket/compare/v0.8.3...7b7f66d380e5ff02d4dceb51d5a16bd6fc3adc76)) + +### Merged PRs + +- Keep reference to asyncio tasks [#69](https://github.com/y-crdt/ypy-websocket/pull/69) ([@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-02-20&to=2023-02-21&type=c)) + +[@davidbrochart](https://github.com/search?q=repo%3Ay-crdt%2Fypy-websocket+involves%3Adavidbrochart+updated%3A2023-02-20..2023-02-21&type=Issues) + + + ## 0.8.3 ([Full Changelog](https://github.com/y-crdt/ypy-websocket/compare/v0.8.2...f0851d01bd7143bf5b94a0dbf90120aac0bd2800)) @@ -18,8 +34,6 @@ [@bnavigator](https://github.com/search?q=repo%3Ay-crdt%2Fypy-websocket+involves%3Abnavigator+updated%3A2022-12-06..2023-02-20&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ay-crdt%2Fypy-websocket+involves%3Adavidbrochart+updated%3A2022-12-06..2023-02-20&type=Issues) - - ## 0.8.2 ([Full Changelog](https://github.com/y-crdt/ypy-websocket/compare/v0.8.1...6409366bb86e80e22a04e7b7933a5ce5dd84b77e)) diff --git a/ypy_websocket/__init__.py b/ypy_websocket/__init__.py index c98cc3b..03c4993 100644 --- a/ypy_websocket/__init__.py +++ b/ypy_websocket/__init__.py @@ -2,4 +2,4 @@ from .websocket_server import WebsocketServer, YRoom # noqa from .yutils import YMessageType # noqa -__version__ = "0.8.3" +__version__ = "0.8.4"