Skip to content

Commit

Permalink
Add release checklist
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed May 11, 2015
1 parent 9b33bde commit 8d5df49
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ fino
[![Coverage Status](https://coveralls.io/repos/hugovk/fino/badge.png?branch=master)](https://coveralls.io/r/hugovk/fino?branch=master)
[![Code Health](https://landscape.io/github/hugovk/fino/master/landscape.svg)](https://landscape.io/github/hugovk/fino/master)

Given an integer, output the Finnish word for that number.
Output the Finnish word for a given integer.

* Used by [hugovk/everyfinnishno](https://github.com/hugovk/everyfinnishno) to tweet [@EveryFinnishNo](https://twitter.com/EveryFinnishNo).
28 changes: 28 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Release Checklist

* [ ] Get master to the appropriate code release state. [Travis CI](https://travis-ci.org/hugovk/fino) should be running cleanly for all merges to master.
* [ ] Update version in `setup.py` and commit:
```bash
git checkout master
edit setup.py
git add setup.py
git commit -m "Release 0.3.0"
```
* [ ] Tag the last commit with the version number:
```bash
git tag -a 0.3.0 -m "Release 0.3.0"
```
* [ ] Release on PyPI:
```bash
python setup.py register
python setup.py sdist --format=gztar upload
```
* [ ] Push: `git push`
* [ ] Push tags: `git push --tags`
* [ ] Create new GitHub release: https://github.com/hugovk/fino/releases/new
* [ ] Update develop branch from master:
```bash
git checkout develop
git merge master --ff-only
git push
```

0 comments on commit 8d5df49

Please sign in to comment.