Skip to content

Commit a75c4d6

Browse files
committed
Update version to 0.3.0-dev
Also add blurb to README about release process.
1 parent 6614756 commit a75c4d6

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,14 @@ In the second terminal, you will run the Docker image.
169169
If a test fails, `server.py` does not support the same `debug_cases` argument as
170170
`client.py`, but you can modify `fuzzingclient.json` to specify a subset of
171171
cases to run, e.g. `3.*` to run all test cases in section 3.
172+
173+
## Release Process
174+
175+
* Remove `-dev` suffix from `version.py`.
176+
* Commit and push version change.
177+
* Create and push tag, e.g. `git tag 1.0.0 && git push origin 1.0.0`.
178+
* Clean build directory: `rm -fr dist`
179+
* Build package: `python setup.py sdist`
180+
* Upload to PyPI: `twine upload dist/*`
181+
* Increment version and add `-dev` suffix.
182+
* Commit and push version change.

trio_websocket/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.0'
1+
__version__ = '0.3.0-dev'

0 commit comments

Comments
 (0)