From 647f75c4e8d9c94c40879789a742729dd9dff3d8 Mon Sep 17 00:00:00 2001 From: Thomas James Alexander Thurman Date: Thu, 23 Oct 2008 04:32:03 +0000 Subject: [PATCH] 2.25.5 release. svn path=/trunk/; revision=3994 --- ChangeLog | 6 +++++- NEWS | 12 ++++++++++++ tools/release-wrangler.py | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 51cebc237..7d6329632 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ 2008-10-23 Thomas Thurman - * configure.in: Post-release bump to 2.25.5. + * NEWS: 2.25.5 release. 2008-10-23 Thomas Thurman @@ -27,6 +27,10 @@ * src/Makefile.am: ditto. * po/POTFILES.skip: ditto. +2008-10-22 Thomas Thurman + + * configure.in: Post-release bump to 2.25.5. + 2008-10-22 Thomas Thurman * NEWS: 2.25.3 release. diff --git a/NEWS b/NEWS index 2a49be3a9..d8c2d3483 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +2.25.5 +====== + +Thanks to Thomas Thurman for improvements in this version. + + - Allow third-party apps to decide whether a window appears + on all workspaces (Thomas) (#557536) + - Fixed keybindings script (again) (Thomas) + +Translations + David Planella (ca), Robert Millan (ca@valencia) + 2.25.3 ====== diff --git a/tools/release-wrangler.py b/tools/release-wrangler.py index 2945fcf2b..548af7fe2 100644 --- a/tools/release-wrangler.py +++ b/tools/release-wrangler.py @@ -62,7 +62,7 @@ def check_we_are_up_to_date(): changed = [] for line in commands.getoutput('/usr/bin/svn status').split('\n'): if line!='' and (line[0]=='C' or line[0]=='M'): - if line.find('release-wrangler.py')==-1: + if line.find('release-wrangler.py')==-1 and line.find('ChangeLog')==-1: # we should be insensitive to changes in this script itself # to avoid chicken-and-egg problems changed.append(line[1:].lstrip())