diff --git a/ChangeLog b/ChangeLog index 152825419..2686e1d45 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,9 @@ -Gajim 0.16.1 () +Gajim 0.16.1 (28 February 2015) * Fix sending Zeroconf messages * Make ipython compatible to version >= 1.0 * Support XEP-0313 MAM + * Minor fixes and improvements Gajim 0.16 (04 October 2014) diff --git a/autogen.sh b/autogen.sh index 9d36dceed..a5f2f461f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash - gajimversion="0.16" + gajimversion="0.16.1" 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 2c1c54ad5..472b12f50 100644 --- a/src/common/defs.py +++ b/src/common/defs.py @@ -27,7 +27,7 @@ docdir = '../' basedir = '../' localedir = '../po' -version = '0.16.0.1' +version = '0.16.1' import subprocess try: node = subprocess.Popen('hg tip --template "{node|short}"', shell=True,