Updating to existing milestone latest so the changelog will merge because they're just difficult to handle in version control.

This commit is contained in:
Ted Gould 2011-03-23 20:54:30 -05:00
commit 69ec667c35
2 changed files with 8 additions and 2 deletions

7
debian/changelog vendored
View File

@ -1,9 +1,14 @@
ubuntu-dev-tools (0.121) UNRELEASED; urgency=low
[ Daniel Holbach ]
* harvest, setup.py: install tool that queries Harvest for information
about open opportunities for a given source package.
-- Daniel Holbach <daniel.holbach@ubuntu.com> Mon, 21 Mar 2011 12:24:56 +0100
[ Ted Gould ]
* lp-project-upload: Use a milestone that already exists if there is
one to use.
-- Ted Gould <ted@ubuntu.com> Wed, 23 Mar 2011 20:52:56 -0500
ubuntu-dev-tools (0.120) unstable; urgency=low

View File

@ -105,7 +105,8 @@ def main():
if not release:
for milestone in proj.all_milestones:
if milestone.name == version:
release = milestone.createProductRelease(date_released=datetime.date.today().strftime('%Y-%m-%d'))
today = datetime.date.today().strftime('%Y-%m-%d')
release = milestone.createProductRelease(date_released=today)
if not release:
release = create_release(proj, version)