From 35c9fc24d8e1e427cf3f6fadc9adb338c599cca1 Mon Sep 17 00:00:00 2001 From: Pierre Raybaut Date: Thu, 7 Nov 2024 12:01:36 +0100 Subject: [PATCH] Bump version to 0.14.1 --- CHANGELOG.md | 7 +++++++ qwt/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 189f124..9a73075 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # PythonQwt Releases +## Version 0.14.1 + +- Handled `RuntimeError` when running `test_eventfilter.py` on Ubuntu 22.04 (Python 3.12, PyQt5) +- Fixed `ResourceWarning: unclosed file` in `test_cpudemo.py` (purely test issue) +- Fixed segmentation fault in `test_multidemo.py` (purely test issue, related to test utility module `qwt.tests.utils`) +- Update GitHub actions to use the latest versions of actions/checkout, actions/setup-python, ... + ## Version 0.14.0 - Dropped support for Python 3.8 diff --git a/qwt/__init__.py b/qwt/__init__.py index 58b73ae..5c7900e 100644 --- a/qwt/__init__.py +++ b/qwt/__init__.py @@ -55,7 +55,7 @@ from qwt.text import QwtText # noqa: F401 from qwt.toqimage import array_to_qimage as toQImage # noqa: F401 -__version__ = "0.14.0" +__version__ = "0.14.1" QWT_VERSION_STR = "6.1.5"