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-08-08 02:00:51 +0400
committerYann Leboulanger <asterix@lagaule.org>2009-08-08 02:00:51 +0400
commit18372ba79ddaa2636ab1fd484570236daf66bb68 (patch)
treeab96840c3823c4d84e577358e2aeab6ad272e82f
parent97bd713066184b6b2ecb91554305a75f8e5aefb7 (diff)
prepare 0.12.5 release
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog8
-rw-r--r--gajim.nsi2
-rw-r--r--setup_win32.py2
-rw-r--r--src/common/defs.py2
6 files changed, 15 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index a2dd8ccc7..f7121ca20 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Gajim 0.12.4 (08 August 2009)
+
+ * Don't depend on GTK 2.14
+
Gajim 0.12.4 (07 August 2009)
* Fix History manager
diff --git a/configure.ac b/configure.ac
index 27f3993b1..54b231096 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_INIT([Gajim - A Jabber Instant Messager],
- [0.12.4],[http://trac.gajim.org/],[gajim])
+ [0.12.5],[http://trac.gajim.org/],[gajim])
AC_PREREQ([2.59])
AM_INIT_AUTOMAKE([1.8])
AC_CONFIG_HEADER(config.h)
diff --git a/debian/changelog b/debian/changelog
index 972b30c0e..0e9c7de90 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,10 @@
-gajim (0.12.3-1) unstable; urgency=low
+gajim (0.12.5-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Yann Leboulanger <asterix@lagaule.org> Sun, 08 Aug 2009 00:06:15 +0100
+
+gajim (0.12.4-1) unstable; urgency=low
* New upstream release.
* Fix history manager. Closes: #539109
diff --git a/gajim.nsi b/gajim.nsi
index 048458b01..6e8b1a4ae 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.12.4"
+ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.12.5"
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 a55be26ce..c689c09bf 100644
--- a/setup_win32.py
+++ b/setup_win32.py
@@ -71,7 +71,7 @@ opts = {
setup(
name = 'Gajim',
- version = '0.12.4',
+ version = '0.12.5',
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 69d6dd335..29c9827c8 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -29,7 +29,7 @@ docdir = '../'
datadir = '../'
localedir = '../po'
-version = '0.12.4'
+version = '0.12.5'
import sys, os.path
for base in ('.', 'common'):