From f8f3422a2c8dac3cc235f79d0d1db28d5dd1cf1c Mon Sep 17 00:00:00 2001 From: dalthviz <16781833+dalthviz@users.noreply.github.com> Date: Mon, 23 Oct 2023 18:50:36 -0500 Subject: [PATCH] Release 2.4.1 --- CHANGELOG.md | 21 +++++++++++++++++++++ qtpy/__init__.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0efbb763..592d4cf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # History of changes +## Version 2.4.1 (2023-10-23) + +### Issues Closed + +* [Issue 462](https://github.com/spyder-ide/qtpy/issues/462) - Release QtPy 2.4.1 +* [Issue 458](https://github.com/spyder-ide/qtpy/issues/458) - Typo causes failed QWebEngineScript with PySide6 + +In this release 2 issues were closed. + +### Pull Requests Merged + +* [PR 459](https://github.com/spyder-ide/qtpy/pull/459) - [pre-commit.ci] pre-commit autoupdate, by [@pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci) +* [PR 456](https://github.com/spyder-ide/qtpy/pull/456) - [pre-commit.ci] pre-commit autoupdate, by [@pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci) +* [PR 455](https://github.com/spyder-ide/qtpy/pull/455) - PR: Fix bug when importing from `PySide6.QtWebEngineCore/QtWebEngineWidgets` (`QWebEngineScrip` vs `QWebEngineScript`) , by [@damonlynch](https://github.com/damonlynch) + +In this release 3 pull requests were closed. + + +---- + + ## Version 2.4.0 (2023-08-29) ### Issues Closed diff --git a/qtpy/__init__.py b/qtpy/__init__.py index 5467fda5..387cc670 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.1" class PythonQtError(RuntimeError):