mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
ANY post-release bump is now the most recent, not just the one that
2008-02-26 Thomas Thurman <tthurman@gnome.org> * tools/release-wrangler.py: ANY post-release bump is now the most recent, not just the one that matches the current version. Otherwise, you can't use these tools straight after a branch. The changeset before this one was mislabelled because of this. svn path=/trunk/; revision=3601
This commit is contained in:
parent
9d9576612b
commit
c0c05d51ea
@ -1,3 +1,10 @@
|
||||
2008-02-26 Thomas Thurman <tthurman@gnome.org>
|
||||
|
||||
* tools/release-wrangler.py: ANY post-release bump is now the
|
||||
most recent, not just the one that matches the current version.
|
||||
Otherwise, you can't use these tools straight after a branch.
|
||||
The changeset before this one was mislabelled because of this.
|
||||
|
||||
2008-02-26 Thomas Thurman <tthurman@gnome.org>
|
||||
|
||||
* NEWS: 2.23.0 release.
|
||||
@ -24,6 +31,7 @@
|
||||
function containing duplicated code from elsewhere.
|
||||
* src/core/prefs.c (init_button_layout): only compiled when
|
||||
HAVE_GCONF is not defined. Removed a compiler warning.
|
||||
|
||||
2008-02-23 Thomas Thurman <tthurman@gnome.org>
|
||||
|
||||
* tools/commit-wrangler.py: Print URL of changeset on success.
|
||||
|
@ -142,7 +142,8 @@ def scan_changelog(version):
|
||||
for line in changelog:
|
||||
if is_date(line):
|
||||
release_date = line[:10]
|
||||
if "Post-release bump to %s.%s.%s." % (version['major'], version['minor'], version['micro']) in line:
|
||||
|
||||
if "Post-release bump to" in line:
|
||||
changelog = changelog[:changelog.index(line)+1]
|
||||
break
|
||||
|
||||
@ -281,6 +282,7 @@ def edit_news_entry(version):
|
||||
tmp.close()
|
||||
|
||||
os.system(favourite_editor()+' +6 %s ' % (filename))
|
||||
# FIXME: if they abort, would be useful to abort here too
|
||||
|
||||
# Write it out to NEWS
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user