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>2009-11-25 00:12:56 +0300
committerYann Leboulanger <asterix@lagaule.org>2009-11-25 00:12:56 +0300
commitbab0c8b612dfee949678ec5d1d443ba9be373cec (patch)
treee09c2eb96a0db6bbc922ab88d8b81fef99b7f89e
parent81347f30bfa6269b99f04a68cc85d046c092cf00 (diff)
prepare 0.13 releasegajim-0.13
-rw-r--r--ChangeLog2
-rw-r--r--configure.ac2
-rw-r--r--gajim.nsi2
-rw-r--r--setup_win32.py2
-rw-r--r--src/common/defs.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 6f77eb6d3..ed089968b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-Gajim 0.13 (XX November 2009)
+Gajim 0.13 (24 November 2009)
* Improve gtkspell (fix memleak)
* BOSH connection
diff --git a/configure.ac b/configure.ac
index e67c39b83..4acfaf31a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_INIT([Gajim - A Jabber Instant Messager],
- [0.12.5.90-rc5],[http://trac.gajim.org/],[gajim])
+ [0.13],[http://trac.gajim.org/],[gajim])
AC_PREREQ([2.59])
AC_CONFIG_HEADER(config.h)
diff --git a/gajim.nsi b/gajim.nsi
index c31d3b7d0..8b4e16deb 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-rc5"
+ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.13"
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 3be40f913..0fdcbd45b 100644
--- a/setup_win32.py
+++ b/setup_win32.py
@@ -72,7 +72,7 @@ opts = {
setup(
name = 'Gajim',
- version = '0.13-rc5',
+ version = '0.13',
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 b87648364..1876fb205 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
datadir = '../'
localedir = '../po'
-version = '0.12.5.90-rc5'
+version = '0.13'
import sys, os.path
for base in ('.', 'common'):