diff --git a/CHANGELOG.md b/CHANGELOG.md index aa6e8f7a..25b793f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.43.2 (2024-03-18) + +### Fix + +* **cli/server:** Added QApplications to enter separate QT event loop ensuring that QT objects are not deleted ([`d0f9bf1`](https://gitlab.psi.ch/bec/bec-widgets/-/commit/d0f9bf17339296a60301e5e6ffe602db369c6c7c)) + ## v0.43.1 (2024-03-15) ### Fix diff --git a/setup.py b/setup.py index 79f25316..d3ef17f5 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # pylint: disable= missing-module-docstring from setuptools import setup, find_packages -__version__ = "0.43.1" +__version__ = "0.43.2" # Default to PyQt6 if no other Qt binding is installed QT_DEPENDENCY = "PyQt6>=6.0"