diff --git a/CHANGELOG b/CHANGELOG index 39bdb4e1..dd651767 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +qtermwidget-2.0.1 / 2024-06-27 +=============================== + * Fixed visual artifacts due to a mistake about conversion to `std::wstring` in Qt6 port. + qtermwidget-2.0.0 / 2024-05-17 =============================== * Ported to Qt6. diff --git a/CMakeLists.txt b/CMakeLists.txt index 9cf35160..e6e1341c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ option(USE_UTF8PROC "Use libutf8proc for better Unicode support. Default OFF" OF # keep this in sync with the version in pyqt/pyproject.toml set(QTERMWIDGET_VERSION_MAJOR "2") set(QTERMWIDGET_VERSION_MINOR "0") -set(QTERMWIDGET_VERSION_PATCH "0") +set(QTERMWIDGET_VERSION_PATCH "1") set(QTERMWIDGET_VERSION "${QTERMWIDGET_VERSION_MAJOR}.${QTERMWIDGET_VERSION_MINOR}.${QTERMWIDGET_VERSION_PATCH}") diff --git a/lib/qtermwidget.json b/lib/qtermwidget.json index a0e6af82..01460e9b 100644 --- a/lib/qtermwidget.json +++ b/lib/qtermwidget.json @@ -1,6 +1,6 @@ { "Name" : "QTermWidget", - "Version" : "2.0.0", + "Version" : "2.0.1", "Vendor" : "LXQt", "Copyright" : "(C) 2022-2024 LXQt", "Url" : "https://github.com/lxqt/qtermwidget", diff --git a/pyqt/pyproject.toml b/pyqt/pyproject.toml index b6200cf4..028a6ea3 100644 --- a/pyqt/pyproject.toml +++ b/pyqt/pyproject.toml @@ -6,5 +6,5 @@ build-backend = "sipbuild.api" [tool.sip.metadata] name = "QTermWidget" -version = "2.0.0" +version = "2.0.1" requires-dist = ["PyQt6"]