You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to generate a changelog within certain date ranges. It would be highly useful when using GitHub Release Notes as well. I was thinking of implementing it like so:
// generate changelog with all releases (current functionality)$changelog->generate();
// generate changelog with all releases after 2 September 2017$changelog->generate(newDateTime('2017-09-02'));
// generate changelog with all releases up to 5 November 2017$changelog->generate(null, newDateTime('2017-11-05'));
// generate changelog with all releases between 2 September 2017 and 4 May 2018$changelog->generate(newDateTime('2017-09-02'), newDateTime('2018-05-04'));
The text was updated successfully, but these errors were encountered:
It would be nice to generate a changelog within certain date ranges. It would be highly useful when using GitHub Release Notes as well. I was thinking of implementing it like so:
The text was updated successfully, but these errors were encountered: