-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add howto release and fix up travis.yml
- Loading branch information
nickg
committed
Jun 22, 2017
1 parent
47bfa78
commit d264f24
Showing
2 changed files
with
31 additions
and
1 deletion.
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
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,30 @@ | ||
# Release HOWTO | ||
|
||
since I forget. | ||
|
||
Most if not all of this should be semi-automated. | ||
|
||
1. Review existing tags and pick new release number | ||
|
||
|
||
TODO: from changelog get last version and make sure it's not | ||
tagged already. | ||
|
||
```bash | ||
git tag | ||
``` | ||
|
||
2. Add to CHANGELOG.md | ||
|
||
2. Tag locally | ||
|
||
```bash | ||
git tag -a vLASTVERSION -m "First release" | ||
``` | ||
|
||
3. Push | ||
|
||
```bash | ||
git push origin LASTVERSION | ||
``` | ||
|