From ce653e949f3b84998bd02a7a494f292a20c41347 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Wed, 14 Jun 2017 10:38:38 +0200 Subject: Add changes file for 5.9.1 Change-Id: Id2a0420cd1e49ea993c953337529a0d8e2051492 Reviewed-by: Oliver Wolff --- dist/changes-5.9.1 | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 dist/changes-5.9.1 diff --git a/dist/changes-5.9.1 b/dist/changes-5.9.1 new file mode 100644 index 0000000..e0a6a4b --- /dev/null +++ b/dist/changes-5.9.1 @@ -0,0 +1,24 @@ +Qt 5.9.1 is a bug-fix release. It maintains both forward and backward +compatibility (source and binary) with Qt 5.9.0. + +For more details, refer to the online documentation included in this +distribution. The documentation is also available online: + +http://doc.qt.io/qt-5/index.html + +The Qt version 5.9 series is binary compatible with the 5.8.x series. +Applications compiled for 5.8 will continue to run with 5.9. + +Some of the changes listed in this file include issue tracking numbers +corresponding to tasks in the Qt Bug Tracker: + +https://bugreports.qt.io/ + +Each of these identifiers can be entered in the bug tracker to obtain more +information about a particular change. + +**************************************************************************** +* Library * +**************************************************************************** + + - This release contains only minor code improvements. -- cgit v1.2.3 From 79bc5697971202313614587e441367589f0adf56 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 30 Jun 2017 09:52:08 +0200 Subject: Bump version Change-Id: I814c5179994fb0dc0925e93ff411beaeaaa9b329 --- .qmake.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.qmake.conf b/.qmake.conf index 0dcf6d9..78a277a 100644 --- a/.qmake.conf +++ b/.qmake.conf @@ -1,3 +1,3 @@ load(qt_build_config) -MODULE_VERSION = 5.9.1 +MODULE_VERSION = 5.9.2 -- cgit v1.2.3 From fe63ea126822fae40db90a06ab3be47700e85ec4 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Mon, 3 Jul 2017 09:24:42 +0200 Subject: QWinJumpList: Fix typo in macro check Task-number: QTBUG-61740 Change-Id: Iffc1f1d95d7562c20c272495aa2ba92e4ac7aa0e Reviewed-by: Oliver Wolff --- src/winextras/qwinjumplist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/winextras/qwinjumplist.cpp b/src/winextras/qwinjumplist.cpp index 12fa2e5..94b8e81 100644 --- a/src/winextras/qwinjumplist.cpp +++ b/src/winextras/qwinjumplist.cpp @@ -41,7 +41,7 @@ #include #ifdef Q_CC_MINGW // MinGW: Enable SHCreateItemFromParsingName() -# if defined(_WIN32_IE) && _WIN32_IE << 0x0700 // _WIN32_IE_IE70 +# if defined(_WIN32_IE) && _WIN32_IE < 0x0700 // _WIN32_IE_IE70 # undef _WIN32_IE # endif # ifndef _WIN32_IE -- cgit v1.2.3