Skip to content

Commit 67278dc

Browse files
committed
docs/releasing.md: short doc describing how to make a release.
1 parent f51fa87 commit 67278dc

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docs/releasing.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# How to create a release of `git-when-merged`
2+
3+
1. Create a release tag:
4+
5+
VERSION=1.2.3
6+
git tag -s -m "git-when-merged version $VERSION" v$VERSION
7+
8+
2. Create a test release (without uploading):
9+
10+
tox -e publish
11+
12+
3. Push the tag:
13+
14+
git push origin v$VERSION
15+
16+
4. Create and upload a release:
17+
18+
tox -e publish -- upload
19+
20+
See [this PR](https://github.com/mhagger/git-when-merged/pull/22) for more information.

0 commit comments

Comments
 (0)