Skip to content

Commit 4511ad4

Browse files
author
Kevin McDonald
committed
Adds release process documentation
1 parent 4400be4 commit 4511ad4

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

RELEASE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Release steps
2+
3+
* Update version constants (find them by running `git grep [VERSION_NUMBER]`)
4+
* Create changelog entry (edit CHANGELOG.md with a one-liner for each closed issue going in the release)
5+
* Commit and push changes to master with the message: "Version Bump to v[VERSION_NUMBER]"
6+
* Push tag and PyPi `fab release:[VERSION_NUMBER]`. Before you do this, make sure you have fabric installed (`pip install fabric`) and also make sure that you have pip set up with your PyPi user credentials. The easiest way to do that is to create a file at `~/.pypirc` with the following contents:
7+
8+
```
9+
[server-login]
10+
username:YOUR_USERNAME
11+
password:YOUR_PASSWORD
12+
```

0 commit comments

Comments
 (0)