diff options
| -rw-r--r-- | CHANGELOG | 1 | ||||
| -rw-r--r-- | qxmpp.pri | 2 | ||||
| -rw-r--r-- | src/base/QXmppGlobal.h | 2 | ||||
| -rw-r--r-- | tests/tests.cpp | 2 |
4 files changed, 4 insertions, 3 deletions
@@ -27,6 +27,7 @@ QXmpp 0.4.0 (UNRELEASED) - Improve XEP-0136 support to enable archive deletion. - Set default keep-alive timeout to 20 seconds, enables detection of broken connections. - Make install path configurable using the PREFIX variable instead of Qt's installation path. + - Make it possible to build a shared library by invoking "qmake QXMPP_LIBRARY_TYPE=lib". - Fix issues: * Issue 95: Patch for several utility methods in RosterManager @@ -1,7 +1,7 @@ # Common definitions QT += network xml -QXMPP_VERSION = 0.3.92 +QXMPP_VERSION = 0.3.93 QXMPP_INCLUDEPATH = $$PWD/src/base $$PWD/src/client $$PWD/src/server CONFIG(debug, debug|release) { diff --git a/src/base/QXmppGlobal.h b/src/base/QXmppGlobal.h index 09f1c2d2..eca1f30f 100644 --- a/src/base/QXmppGlobal.h +++ b/src/base/QXmppGlobal.h @@ -36,7 +36,7 @@ /// available. /// -#define QXMPP_VERSION 0x00035c +#define QXMPP_VERSION 0x00035d QString QXmppVersion(); diff --git a/tests/tests.cpp b/tests/tests.cpp index ddc9ccfd..8519beb8 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -141,7 +141,7 @@ void TestUtils::testMime() void TestUtils::testLibVersion() { - QCOMPARE(QXmppVersion(), QString("0.3.92")); + QCOMPARE(QXmppVersion(), QString("0.3.93")); } void TestUtils::testTimezoneOffset() |
