Skip to content

Commit

Permalink
Update version to 0.3.0-dev
Browse files Browse the repository at this point in the history
Also add blurb to README about release process.
  • Loading branch information
mehaase committed Oct 17, 2018
1 parent 6614756 commit a75c4d6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,14 @@ In the second terminal, you will run the Docker image.
If a test fails, `server.py` does not support the same `debug_cases` argument as
`client.py`, but you can modify `fuzzingclient.json` to specify a subset of
cases to run, e.g. `3.*` to run all test cases in section 3.

## Release Process

* Remove `-dev` suffix from `version.py`.
* Commit and push version change.
* Create and push tag, e.g. `git tag 1.0.0 && git push origin 1.0.0`.
* Clean build directory: `rm -fr dist`
* Build package: `python setup.py sdist`
* Upload to PyPI: `twine upload dist/*`
* Increment version and add `-dev` suffix.
* Commit and push version change.
2 changes: 1 addition & 1 deletion trio_websocket/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.0'
__version__ = '0.3.0-dev'

0 comments on commit a75c4d6

Please sign in to comment.