diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | tools/release-wrangler.py | 2 |
3 files changed, 18 insertions, 2 deletions
@@ -1,6 +1,6 @@ 2008-10-23 Thomas Thurman <tthurman@gnome.org> - * configure.in: Post-release bump to 2.25.5. + * NEWS: 2.25.5 release. 2008-10-23 Thomas Thurman <tthurman@gnome.org> @@ -29,6 +29,10 @@ 2008-10-22 Thomas Thurman <tthurman@gnome.org> + * configure.in: Post-release bump to 2.25.5. + +2008-10-22 Thomas Thurman <tthurman@gnome.org> + * NEWS: 2.25.3 release. 2008-10-22 Thomas Thurman <tthurman@gnome.org> @@ -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 2945fcf..548af7f 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()) |