diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bd5453..0099254 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 0.12.0 + +([Full Changelog](https://github.com/y-crdt/ypy-websocket/compare/v0.11.1...1af218b034ac16d1bd20d53230e83c9570a799be)) + +### Merged PRs + +- Start store from room, start room from server [#81](https://github.com/y-crdt/ypy-websocket/pull/81) ([@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-19&to=2023-06-20&type=c)) + +[@davidbrochart](https://github.com/search?q=repo%3Ay-crdt%2Fypy-websocket+involves%3Adavidbrochart+updated%3A2023-06-19..2023-06-20&type=Issues) + + + ## 0.11.1 ([Full Changelog](https://github.com/y-crdt/ypy-websocket/compare/v0.11.0...55b5fb6032b8ee03f41601ea130f6eb5d29edcf2)) @@ -17,8 +33,6 @@ [@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)) diff --git a/ypy_websocket/__init__.py b/ypy_websocket/__init__.py index ed8fb5a..63e7b0d 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.1" +__version__ = "0.12.0"