mirror of
https://github.com/dlang/tools.git
synced 2025-04-30 07:00:38 +03:00
Use nextVersionDate as end date when searching github issues
Issues closed after the release date should be ignored.
This commit is contained in:
parent
7b48e78165
commit
aa730b89ff
1 changed files with 4 additions and 2 deletions
|
@ -827,8 +827,10 @@ Please supply a bugzilla version
|
|||
|
||||
Nullable!(DateTime) firstDate = getFirstDateTime(revRange);
|
||||
enforce(!firstDate.isNull(), "Couldn't find a date from the revRange");
|
||||
githubChanges = getGithubIssuesRest(firstDate.get(), cast(DateTime)currDate
|
||||
, githubToken);
|
||||
Nullable!(DateTime) endDate = getEndDateTime(nextVersionDate);
|
||||
enforce(!endDate.isNull(), "Couldn't parse the next version date string");
|
||||
|
||||
githubChanges = getGithubIssuesRest(firstDate.get(), endDate.get(), githubToken);
|
||||
}
|
||||
|
||||
// Accumulate contributors from the git log
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue