From 8a2944fb6d9fb226f1f1989e511d37683eeeb236 Mon Sep 17 00:00:00 2001 From: johnbywater Date: Sat, 20 Jan 2024 23:55:08 +0000 Subject: [PATCH] Increased version to 9.2.22. --- docs/topics/release_notes.rst | 12 ++++++++++++ eventsourcing/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/topics/release_notes.rst b/docs/topics/release_notes.rst index f9815afc..9c9565d1 100644 --- a/docs/topics/release_notes.rst +++ b/docs/topics/release_notes.rst @@ -23,6 +23,18 @@ the underlying principles are the same, and so conversion of code and stored events is very possible. +Version 9.2.22 (released 20 Jan 2024) +------------------------------------- + +* Changed all modules to have "from __future__ import annotations" and adjusted + singledispatchmethod so that when forward refs cause method registration to fail, + the registration can be deferred until the method call is dispatched. +* Improved support for Pydantic (compatibility with Pydantic v2). +* Improved docs (fixed typos in Tutorial Part 2, content management system example, + better wording in module docs, added Tutorial Part 4, fixed docstrings). +* Added checks for compatibility with Python 3.12. + + Version 9.2.21 (released 13 Oct 2023) ------------------------------------- diff --git a/eventsourcing/__init__.py b/eventsourcing/__init__.py index 7358d7c2..44bf5ac5 100644 --- a/eventsourcing/__init__.py +++ b/eventsourcing/__init__.py @@ -1 +1 @@ -__version__ = "9.2.21" +__version__ = "9.2.22"