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--ChangeLog6
-rwxr-xr-xautogen.sh2
-rw-r--r--debian/changelog6
-rw-r--r--src/common/defs.py2
4 files changed, 14 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2686e1d45..a704ec1a4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Gajim 0.16.2 (20 July 2015)
+
+ * improve Zeroconf under windows and with IPv6
+ * Fix errors with GnuPG
+ * Minor fixes and improvements
+
Gajim 0.16.1 (28 February 2015)
* Fix sending Zeroconf messages
diff --git a/autogen.sh b/autogen.sh
index a5f2f461f..9d9d825dc 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
- gajimversion="0.16.1"
+ gajimversion="0.16.2"
if [ -d ".hg" ]; then
node=$(hg tip --template "{node}")
hgversion="-${node:0:12}"
diff --git a/debian/changelog b/debian/changelog
index 82d7b9b86..5022f48cf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+gajim (0.16.2-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Yann Leboulanger <yann@leboulanger.org> Sat, 20 Jul 2014 22:30:10 +0200
+
gajim (0.16.1-1) unstable; urgency=low
* New upstream release
diff --git a/src/common/defs.py b/src/common/defs.py
index 472b12f50..747035216 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
basedir = '../'
localedir = '../po'
-version = '0.16.1'
+version = '0.16.2'
import subprocess
try:
node = subprocess.Popen('hg tip --template "{node|short}"', shell=True,