diff --git a/CHANGELOG.md b/CHANGELOG.md index 592db1ca..8737865c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.47.0 (2024-04-23) + +### Feature + +* **utils/thread_checker:** Util class to check the thread leakage for closeEvent in qt ([`71cb80d`](https://gitlab.psi.ch/bec/bec-widgets/-/commit/71cb80d544c5f4ef499379a431ce0c17907c7ce8)) + ## v0.46.7 (2024-04-21) ### Fix diff --git a/setup.py b/setup.py index b99ae940..6d51356a 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # pylint: disable= missing-module-docstring from setuptools import find_packages, setup -__version__ = "0.46.7" +__version__ = "0.47.0" # Default to PyQt6 if no other Qt binding is installed QT_DEPENDENCY = "PyQt6>=6.0"