diff --git a/CHANGELOG.md b/CHANGELOG.md index 32703ce4..048961d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.41.2 (2024-02-28) + +### Fix + +* **utils/bec_dispatcher:** Msg is unp[acked from dict before accessing .content ([`bb1f066`](https://gitlab.psi.ch/bec/bec-widgets/-/commit/bb1f066c3c5e5076a8906e309030cfb47a6cad12)) + ## v0.41.1 (2024-02-26) ### Fix diff --git a/setup.py b/setup.py index 8d1d10ec..4c9789dc 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # pylint: disable= missing-module-docstring from setuptools import setup, find_packages -__version__ = "0.41.1" +__version__ = "0.41.2" # Default to PyQt6 if no other Qt binding is installed QT_DEPENDENCY = "PyQt6>=6.0"