From b55c953e7afa7a4f006f40107576641e8378d295 Mon Sep 17 00:00:00 2001 From: dalthviz <16781833+dalthviz@users.noreply.github.com> Date: Tue, 11 Feb 2025 10:06:10 -0500 Subject: [PATCH] Release 2.4.3 --- CHANGELOG.md | 23 +++++++++++++++++++++++ qtpy/__init__.py | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f7eb128..c50fbff6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # History of changes +## Version 2.4.3 (2025-02-11) + +### Issues Closed + +* [Issue 509](https://github.com/spyder-ide/qtpy/issues/509) - Release 2.4.3 +* [Issue 505](https://github.com/spyder-ide/qtpy/issues/505) - Breaking change related to QMenu in 2.4.2 ([PR 507](https://github.com/spyder-ide/qtpy/pull/507) by [@dalthviz](https://github.com/dalthviz)) +* [Issue 502](https://github.com/spyder-ide/qtpy/issues/502) - Hijacked PyQt types are not returned from native Qt APIs ([PR 507](https://github.com/spyder-ide/qtpy/pull/507) by [@dalthviz](https://github.com/dalthviz)) +* [Issue 501](https://github.com/spyder-ide/qtpy/issues/501) - Check/fix several CI warnings ([PR 511](https://github.com/spyder-ide/qtpy/pull/511) by [@dalthviz](https://github.com/dalthviz)) + +In this release 4 issues were closed. + +### Pull Requests Merged + +* [PR 511](https://github.com/spyder-ide/qtpy/pull/511) - PR: Remove `Mambaforge` usage and update Linux setup (CI), by [@dalthviz](https://github.com/dalthviz) ([501](https://github.com/spyder-ide/qtpy/issues/501)) +* [PR 507](https://github.com/spyder-ide/qtpy/pull/507) - PR: Ensure `QMenu` and `QToolBar` `isinstance` checks succeed and remove unneeded wrapper classes , by [@dalthviz](https://github.com/dalthviz) ([505](https://github.com/spyder-ide/qtpy/issues/505), [502](https://github.com/spyder-ide/qtpy/issues/502)) +* [PR 506](https://github.com/spyder-ide/qtpy/pull/506) - PR: Ignore PySide6 `QSqlDatabase.exec` `DeprecationWarning`, by [@juliangilbey](https://github.com/juliangilbey) + +In this release 3 pull requests were closed. + + +---- + + ## Version 2.4.2 (2024-11-04) ### Issues Closed diff --git a/qtpy/__init__.py b/qtpy/__init__.py index 697f23ae..2656944c 100644 --- a/qtpy/__init__.py +++ b/qtpy/__init__.py @@ -63,7 +63,7 @@ from packaging.version import parse # Version of QtPy -__version__ = "2.5.0.dev0" +__version__ = "2.4.3" class PythonQtError(RuntimeError):