diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-03-23 14:53:45 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-03-23 14:53:45 +0000 |
| commit | fb6af4f931efd071bc0ecf8ee6b77acd2cee1f1f (patch) | |
| tree | 07364801ffe871cbd4dd2680e11a9b3c8d38a92d | |
| parent | bf2ffd4d596abe2a127db7924a8b1e458dc6158f (diff) | |
| download | qxmpp-fb6af4f931efd071bc0ecf8ee6b77acd2cee1f1f.tar.gz | |
bump version
| -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() |
