aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2012-03-23 14:53:45 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2012-03-23 14:53:45 +0000
commitfb6af4f931efd071bc0ecf8ee6b77acd2cee1f1f (patch)
tree07364801ffe871cbd4dd2680e11a9b3c8d38a92d
parentbf2ffd4d596abe2a127db7924a8b1e458dc6158f (diff)
downloadqxmpp-fb6af4f931efd071bc0ecf8ee6b77acd2cee1f1f.tar.gz
bump version
-rw-r--r--CHANGELOG1
-rw-r--r--qxmpp.pri2
-rw-r--r--src/base/QXmppGlobal.h2
-rw-r--r--tests/tests.cpp2
4 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 67689e82..990fd096 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
diff --git a/qxmpp.pri b/qxmpp.pri
index f43748c7..96485905 100644
--- a/qxmpp.pri
+++ b/qxmpp.pri
@@ -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()