diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-29 20:28:01 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-29 20:28:01 +0800 |
commit | 947c4ba4558c7cb156956ac63000b03bddbb0c9c (patch) | |
tree | 0d65d240d35871d267a61a2479c6567b2b440c3d /release.py | |
parent | f468e66e0f35532de89ffd072828ea26d496090d (diff) | |
download | gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar.gz gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar.bz2 gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar.lz gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar.xz gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar.zst gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.zip |
release.py: add release date in NEWS
Diffstat (limited to 'release.py')
-rwxr-xr-x | release.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release.py b/release.py index b0491b713..624dd11d2 100755 --- a/release.py +++ b/release.py @@ -221,7 +221,8 @@ class Project: news = 'NEW in '+ self.package_version line = '=' * len(news) - news += '\n%s\n' % line + today = datetime.date.today() + news += ' (%s)\n%s\n' % (today.strftime('%d/%m/%Y'),line) if bugs != '': news += 'Bugs fixed:\n' + bugs + '\n' if translations != '': |