From 878fa50165f112a56bd89d240784bf10d94c5963 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sat, 28 Nov 2009 21:10:15 +0100 Subject: [PATCH] prepare 0.13.1 release --- ChangeLog | 6 ++++++ configure.ac | 2 +- gajim.nsi | 2 +- setup_win32.py | 2 +- src/common/defs.py | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index ed089968b..d11d730fc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Gajim 0.13.1 ((28 November 2009) + + * Fix a bug when no account exists and bonjour is not available + * Fix a bug when opening advanced option in MUC + * Fix a bug when using non-BOSH proxies + Gajim 0.13 (24 November 2009) * Improve gtkspell (fix memleak) diff --git a/configure.ac b/configure.ac index 4acfaf31a..5251138a6 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_INIT([Gajim - A Jabber Instant Messager], - [0.13],[http://trac.gajim.org/],[gajim]) + [0.13.1],[http://trac.gajim.org/],[gajim]) AC_PREREQ([2.59]) AC_CONFIG_HEADER(config.h) diff --git a/gajim.nsi b/gajim.nsi index 8b4e16deb..e2ee188cb 100644 --- a/gajim.nsi +++ b/gajim.nsi @@ -189,7 +189,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.13" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.13.1" 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 0fdcbd45b..14d9a386d 100644 --- a/setup_win32.py +++ b/setup_win32.py @@ -72,7 +72,7 @@ opts = { setup( name = 'Gajim', - version = '0.13', + version = '0.13.1', description = 'A full featured Jabber client', author = 'Gajim Development Team', url = 'http://www.gajim.org/', diff --git a/src/common/defs.py b/src/common/defs.py index 1876fb205..aad0eeb0c 100644 --- a/src/common/defs.py +++ b/src/common/defs.py @@ -27,7 +27,7 @@ docdir = '../' datadir = '../' localedir = '../po' -version = '0.13' +version = '0.13.1' import sys, os.path for base in ('.', 'common'): -- 2.11.4.GIT