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 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,