diff --git a/docs/changelog.rst b/docs/changelog.rst index f4c9a627..d01be3ab 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,35 @@ Release Notes .. towncrier release notes start +3.3.0 (2023-03-31) +================== + +Features +-------- + +* Add support for asyncio-based callbacks in the consumer. As a consequence, + the Twisted reactor used by the CLI is now ``asyncio``. + (`PR#282 `_) + +Documentation Improvements +-------------------------- + +* Improve documentation layout, and add some documentation on the message + schemas. + (`1fa8998 + `_) +* Add koji-fedoramessaging-messages to the list of known schemas. + (`ef12fa2 + `_) + +Development Changes +------------------- + +* Update pre-commit linters. + (`0efdde1 + `_) + + 3.2.0 (2022-10-17) ================== diff --git a/fedora_messaging/__init__.py b/fedora_messaging/__init__.py index 9aa42dd6..1b6dca8e 100644 --- a/fedora_messaging/__init__.py +++ b/fedora_messaging/__init__.py @@ -23,4 +23,4 @@ pass -__version__ = "3.2.0" +__version__ = "3.3.0"