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:
authorYann Leboulanger <asterix@lagaule.org>2014-07-02 20:13:01 +0400
committerYann Leboulanger <asterix@lagaule.org>2014-07-02 20:13:01 +0400
commitc1514e97437e4fb0f21ad8b4ec917af4f5ce6f7e (patch)
tree238b12889aa37c836b2652376bcf323f4419ad9d
parentd9034625f2c3bf824a178598ca80a6ac0cc302d6 (diff)
prepare 0.16-rc2gajim-0.16-rc2
-rw-r--r--ChangeLog1
-rwxr-xr-xautogen.sh2
-rw-r--r--debian/changelog6
-rw-r--r--src/common/defs.py2
4 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b58883088..543c9ac69 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,7 @@ Gajim 0.16 ()
* Support XEP-0191 Blocking command
* Support XEP-0249 Direct Invitation
* 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 2766c2e52..66350bf49 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
- gajimversion="0.16-rc1"
+ gajimversion="0.16-rc2"
if [ -d ".hg" ]; then
node=$(hg tip --template "{node}")
hgversion="-${node:0:12}"
diff --git a/debian/changelog b/debian/changelog
index d5009aff4..4728c668f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+gajim (0.16~rc2-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Yann Leboulanger <yann@leboulanger.org> Wed, 02 Jul 2014 18:09:41 +0200
+
gajim (0.16~rc1-1) unstable; urgency=low
* New upstream release
diff --git a/src/common/defs.py b/src/common/defs.py
index 4d3ba2dd1..b9df0bc08 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
basedir = '../'
localedir = '../po'
-version = '0.16-rc1'
+version = '0.16-rc2'
import subprocess
try:
node = subprocess.Popen('hg tip --template "{node|short}"', shell=True,