-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Antonis Christofides
committed
Jul 6, 2014
1 parent
3747b95
commit b381fb0
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
__version__ = "0.1.0" | ||
VERSION = __version__ # synonym |