diff --git a/CHANGELOG.md b/CHANGELOG.md index e42ad407..957b564d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.44.3 (2024-03-21) + +### Fix + +* **cli:** Don't call user script if gui is not alive ([`a92aead`](https://gitlab.psi.ch/bec/bec-widgets/-/commit/a92aead7698fa98d6f7f582d030845d0b940ea2d)) +* **cli:** Added gui heartbeat ([`882cf55`](https://gitlab.psi.ch/bec/bec-widgets/-/commit/882cf55fc5266a2cfb610702e834badff3ad0428)) + ## v0.44.2 (2024-03-20) ### Fix diff --git a/setup.py b/setup.py index f23fc523..a5b4a37e 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # pylint: disable= missing-module-docstring from setuptools import setup, find_packages -__version__ = "0.44.2" +__version__ = "0.44.3" # Default to PyQt6 if no other Qt binding is installed QT_DEPENDENCY = "PyQt6>=6.0"