update tag_history_from_git.py to work for newton

also remove the check that was causing it to skip everything except
liberty

Change-Id: Iceb3fb12916f6e3e31f99014c397d053ecffe892
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2016-05-17 13:04:42 -04:00
parent 56584a2c9c
commit c48b2ac2ac

View File

@ -46,6 +46,7 @@ RELEASES = [
('kilo', datetime.datetime(2015, 4, 30)),
('liberty', datetime.datetime(2015, 10, 15)),
('mitaka', datetime.datetime(2016, 4, 7)),
('newton', datetime.datetime(2016, 10, 6)),
]
@ -98,9 +99,6 @@ for tag in tags:
print('did not find milestone %s tagged for %s' %
(tag, repo_short_name))
continue
if series_name != 'liberty':
print('skipping releases other than liberty (%r)' % series_name)
continue
the_series = series_data.setdefault(series_name, {})
the_milestone = the_series.setdefault(tag, [])
the_milestone.append(