Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rwxr-xr-xautogen.sh2
-rw-r--r--src/common/defs.py2
3 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 715a793d2..5d0373b61 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,7 @@ Gajim 0.16 ()
* Support XEP-0224 Attention
* Support XEP-0191 Blocking command
* Better RTL languages support
+ * use host command to resolve SRV records if it is available
Gajim 0.15.4 (25 May 2013)
diff --git a/autogen.sh b/autogen.sh
index 0f5d39f10..66350bf49 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
- gajimversion="0.16-alpha2"
+ gajimversion="0.16-rc2"
if [ -d ".hg" ]; then
node=$(hg tip --template "{node}")
hgversion="-${node:0:12}"
diff --git a/src/common/defs.py b/src/common/defs.py
index 1b1e74c42..356b161d0 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
basedir = '../'
localedir = '../po'
-version = '0.16.10.0'
+version = '0.16-rc2'
import subprocess
try:
node = subprocess.Popen('hg tip --template "{node|short}"', shell=True,