diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 615dc20a..bb762d15 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,6 +13,13 @@ Change Log Unreleased ---------- + +[9.5.1] - 2024-02-12 +-------------------- +Changed +~~~~~~~ +* Fixed recursion error when consuming events on the same service that produced them. + [9.5.0] - 2024-02-07 -------------------- Added diff --git a/openedx_events/__init__.py b/openedx_events/__init__.py index b1f959b2..c1a3f1e7 100644 --- a/openedx_events/__init__.py +++ b/openedx_events/__init__.py @@ -5,4 +5,4 @@ more information about the project. """ -__version__ = "9.5.0" +__version__ = "9.5.1"