Skip to content

Commit

Permalink
Version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonis Christofides committed Jul 6, 2014
1 parent 3747b95 commit b381fb0
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions HOW_TO_RELEASE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Here's how to release a new micro 0.1.Z version:

1. Switch to the 0.1 branch:

git checkout 0.1

2. Make the required bug fixes, add them to CHANGES.txt under the
(probably new) 0.1.Z heading, and commit them.

3. In the toplevel __init__.py, change __version__ so that it has the
value "0.1.Z" (should be "0.1.Q" where Q=Z-1).

4. Commit:

git commit -a -m "Version 0.1.Z"

5. Create a tag:

git tag 0.1.Z

6. Push changes and tag:

git push
git push origin 0.1.Z

7. Create a new release in github.

8. If needed, also apply the bug fixes to the master branch and
other release branches.
2 changes: 2 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__version__ = "0.1.0"
VERSION = __version__ # synonym

0 comments on commit b381fb0

Please sign in to comment.