From 8a7b64195009206f93f9bb4de4e8e07d1d7feb45 Mon Sep 17 00:00:00 2001 From: Mark <16909269+Archmonger@users.noreply.github.com> Date: Wed, 28 Dec 2022 15:17:29 -0800 Subject: [PATCH] v2.2.0 (#115) --- CHANGELOG.md | 7 ++++++- src/django_idom/__init__.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5797fdca..5ae0eb0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,10 @@ Using the following categories, list your changes in this order: ## [Unreleased] +- Nothing (yet) + +## [2.2.0] - 2022-12-28 + ### Added - Add `options: QueryOptions` parameter to `use_query` to allow for configuration of this hook. @@ -180,7 +184,8 @@ Using the following categories, list your changes in this order: - Support for IDOM within the Django -[unreleased]: https://github.com/idom-team/django-idom/compare/2.1.0...HEAD +[unreleased]: https://github.com/idom-team/django-idom/compare/2.2.0...HEAD +[2.2.0]: https://github.com/idom-team/django-idom/compare/2.1.0...2.2.0 [2.1.0]: https://github.com/idom-team/django-idom/compare/2.0.1...2.1.0 [2.0.1]: https://github.com/idom-team/django-idom/compare/2.0.0...2.0.1 [2.0.0]: https://github.com/idom-team/django-idom/compare/1.2.0...2.0.0 diff --git a/src/django_idom/__init__.py b/src/django_idom/__init__.py index 406f04db..32c4978c 100644 --- a/src/django_idom/__init__.py +++ b/src/django_idom/__init__.py @@ -3,7 +3,7 @@ from django_idom.websocket.paths import IDOM_WEBSOCKET_PATH -__version__ = "2.1.0" +__version__ = "2.2.0" __all__ = [ "IDOM_WEBSOCKET_PATH", "IdomWebsocket",