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
The command-line tool defined in #3 should first have sufficient capabilities to extract the list of changelog fragments from Git history.
For this purpose, we want to add a list subcommand, with the following behaviour:
list --in X.Y.Z would return all fragments included before the X.Y.Z tag but after the most recent tag that comes before it (in terms of Git history)
list --from A.B.C --to D.E.F would return fragments added after A.B.C and before D.E.F
list --from X.Y.Z would return fragments added after X.Y.Z up to the current HEAD
list would return fragments added after the most recent tag
This subcommand would output filenames at first, additional output formats could be added in the future (e.g. showing in which version such file was added, the date of first addition, of last modification, ...)
The text was updated successfully, but these errors were encountered:
The command-line tool defined in #3 should first have sufficient capabilities to extract the list of changelog fragments from Git history.
For this purpose, we want to add a
list
subcommand, with the following behaviour:list --in X.Y.Z
would return all fragments included before the X.Y.Z tag but after the most recent tag that comes before it (in terms of Git history)list --from A.B.C --to D.E.F
would return fragments added after A.B.C and before D.E.Flist --from X.Y.Z
would return fragments added after X.Y.Z up to the current HEADlist
would return fragments added after the most recent tagThis subcommand would output filenames at first, additional output formats could be added in the future (e.g. showing in which version such file was added, the date of first addition, of last modification, ...)
The text was updated successfully, but these errors were encountered: