Skip to content

Commit ab9800b

Browse files
committed
Merge branch 'stable' into rc/v2.9
2 parents c3afe3a + 39783cc commit ab9800b

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

doc/maintainers/releases.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -363,19 +363,27 @@ final release.
363363
364364
Wait for the GitHub
365365
[Integration Tests workflow](https://github.com/commercialhaskell/stack/actions?query=workflow%3A%22Integration+tests%22)
366-
to complete for the branch you just created. This will create a draft GitHub
366+
to complete for the tag you just created. This will create a draft GitHub
367367
release and upload the bindists (plus signatures and hashes) to it.
368368
369369
Edit the draft
370370
[GitHub release](https://github.com/commercialhaskell/stack/releases/):
371371
372-
* Add the ChangeLog to the description.
373-
* Get the list of contributors to the release and add it to the description.
374-
For example, command:
372+
* Add the ChangeLog to the description.
373+
* Get the list of contributors to the release and add it to the
374+
description. For example, command:
375375
376-
~~~text
377-
git shortlog -s origin/release..HEAD|sed $'s/^[0-9 \t]*/* /'|grep -v azure-pipelines|LC_ALL=C sort -f
378-
~~~
376+
=== "Unix-like"
377+
378+
~~~text
379+
git shortlog -s origin/release..HEAD|sed 's/^[0-9 \t]*/* /'|LC_ALL=C sort -f
380+
~~~
381+
382+
=== "Windows (with PowerShell)"
383+
384+
~~~text
385+
(git shortlog -s origin/release..HEAD) -Replace '^[0-9 \t]*', '* ' | Sort-Object
386+
~~~
379387
380388
Publish the GitHub release.
381389

0 commit comments

Comments
 (0)