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>2015-07-31 15:27:15 +0300
committerYann Leboulanger <asterix@lagaule.org>2015-07-31 15:27:15 +0300
commit5979cb94f814e4411585bb3d07deeb5ca64d15bd (patch)
tree87f5e2fb05232b97668bd420c3f9a5cd2af5d51e
parent1c1f720a8a3892d2c402668ba69f7e4fd02979a3 (diff)
prepare 0.16.3 releasegajim-0.16.3
-rw-r--r--ChangeLog6
-rwxr-xr-xautogen.sh2
-rw-r--r--debian/changelog6
-rw-r--r--gajim.nsi2
-rw-r--r--setup_win32.py2
-rw-r--r--src/common/defs.py2
6 files changed, 16 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ffbd55caf..0ed6f91ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Gajim 0.16.3 (31 July 2015)
+
+ * Fix reading secret file
+ * Fix reconnection after suspend
+ * Fix sending GPG-encrypted file to non-trusted key
+
Gajim 0.16.2 (24 July 2015)
* improve Zeroconf under windows and with IPv6
diff --git a/autogen.sh b/autogen.sh
index 9d9d825dc..cf9b3e68d 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
- gajimversion="0.16.2"
+ gajimversion="0.16.3"
if [ -d ".hg" ]; then
node=$(hg tip --template "{node}")
hgversion="-${node:0:12}"
diff --git a/debian/changelog b/debian/changelog
index 4fc506dcb..fcf152cde 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+gajim (0.16.3-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Yann Leboulanger <yann@leboulanger.org> Sat, 31 Jul 2014 23:12:04 +0200
+
gajim (0.16.2-1) unstable; urgency=low
* New upstream release
diff --git a/gajim.nsi b/gajim.nsi
index 9f781236e..288e28124 100644
--- a/gajim.nsi
+++ b/gajim.nsi
@@ -212,7 +212,7 @@ Section "Gajim" SecGajim
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayName" "Gajim"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "UninstallString" "$INSTDIR\Uninstall.exe"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayIcon" "$INSTDIR\bin\Gajim.exe"
- WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.16.2"
+ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.16.3"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "URLInfoAbout" "http://www.gajim.org/"
WriteUninstaller "$INSTDIR\Uninstall.exe"
diff --git a/setup_win32.py b/setup_win32.py
index 89633067b..ccb23de83 100644
--- a/setup_win32.py
+++ b/setup_win32.py
@@ -56,7 +56,7 @@ options = {
setup(
name='Gajim',
- version='0.16.2',
+ version='0.16.3',
description='A full featured Jabber client',
author='Gajim Development Team',
url='http://gajim.org/',
diff --git a/src/common/defs.py b/src/common/defs.py
index b00014fcd..c4898a709 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
basedir = '../'
localedir = '../po'
-version = '0.16.2'
+version = '0.16.3'
import subprocess
try:
node = subprocess.Popen('hg tip --template "{node|short}"', shell=True,