From 6339e69a9b4a0ef000a260d3571ad247f23a4c31 Mon Sep 17 00:00:00 2001 From: Luca Bellonda Date: Sun, 6 May 2018 19:40:43 +0200 Subject: [PATCH] Routine post release. --- NEWS | 2 +- install_scripts/environment/desktop/QXmlEdit.appdata.xml | 2 +- src/globals/includes/xmlEdit.h | 6 +++--- src/resources/QXmlEdit.plist | 2 +- src/version.pri | 2 +- test/tst_qxmledit.cpp | 5 ----- 6 files changed, 7 insertions(+), 12 deletions(-) diff --git a/NEWS b/NEWS index d84f156d..1cf8a403 100644 --- a/NEWS +++ b/NEWS @@ -2,7 +2,7 @@ New tool button to configure view settings in the editor. New menu item to disable a branch using XSL syntax. New options for simple access. - Issue #48 improved xsd diagram display performance. + Issue #47 improved xsd diagram display performance. Changed the year to 2018 on headers. New specialized XML Schema (XSD) validation dialog. diff --git a/install_scripts/environment/desktop/QXmlEdit.appdata.xml b/install_scripts/environment/desktop/QXmlEdit.appdata.xml index 409c51b4..ba609173 100644 --- a/install_scripts/environment/desktop/QXmlEdit.appdata.xml +++ b/install_scripts/environment/desktop/QXmlEdit.appdata.xml @@ -20,7 +20,7 @@ http://qxmledit.org https://github.com/lbellonda/qxmledit/issues - + Qt diff --git a/src/globals/includes/xmlEdit.h b/src/globals/includes/xmlEdit.h index 27736bf5..dd2675e8 100644 --- a/src/globals/includes/xmlEdit.h +++ b/src/globals/includes/xmlEdit.h @@ -35,7 +35,7 @@ // 0: snapshot // 1: rc // 2: release -#define QXMLEDIT_RELEASE_VERSION 2 +#define QXMLEDIT_RELEASE_VERSION 0 #if QXMLEDIT_RELEASE_VERSION == 0 #define QXMLEDIT_VERSION_IS_SNAPSHOT 1 @@ -57,8 +57,8 @@ #endif //-------------------------------------------------------------------------------- -#define VERSION_BASE "0.9.10" -#define VERSION_NUMBER 0x00090A00 +#define VERSION_BASE "0.9.11" +#define VERSION_NUMBER 0x00090B00 //-------------------------------------------------------------------------------- // this is the version number of the welcome dialog diff --git a/src/resources/QXmlEdit.plist b/src/resources/QXmlEdit.plist index 79f234c9..36748fe3 100644 --- a/src/resources/QXmlEdit.plist +++ b/src/resources/QXmlEdit.plist @@ -32,7 +32,7 @@ CFBundleGetInfoString QXmlEdit CFBundleShortVersionString - 0.9.10 + 0.9.11 CFBundleSignature ???? CFBundleExecutable diff --git a/src/version.pri b/src/version.pri index 28eb156f..2fdf9a52 100644 --- a/src/version.pri +++ b/src/version.pri @@ -22,5 +22,5 @@ # #define the version of the program -VERSION = 0.9.10 +VERSION = 0.9.11 QXMLEDIT_VERSION=$$VERSION diff --git a/test/tst_qxmledit.cpp b/test/tst_qxmledit.cpp index 7e9b203a..e946b0a3 100644 --- a/test/tst_qxmledit.cpp +++ b/test/tst_qxmledit.cpp @@ -1624,11 +1624,6 @@ void TestQXmlEdit::testNew() #if QT_VERSION >= QT_VERSION_CHECK(5,0,0) qInstallMessageHandler(msgHandler); #endif - testContainer(); - testStartupAndBehavior(); - testXsdView(); - testEditing(); - testConfig(); } QTEST_MAIN(TestQXmlEdit)