-
Notifications
You must be signed in to change notification settings - Fork 278
Prepare for a 0.13.0 release #1094
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
506ae55
Document release process steps
joshuagl ea958bc
Prepare 0.13.0 release
joshuagl 0714632
docs/RELEASE.md: link to guidance on changelogs
joshuagl 2dc4651
docs/CHANGELOG.md: update for v0.13.0
joshuagl eb1c8d0
setup.py: add project_urls links
joshuagl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 @@ | ||
# Release process | ||
|
||
* Ensure docs/CHANGELOG.md contains a one-line summary of each [notable | ||
change](https://keepachangelog.com/) since the prior release | ||
* Update setup.py and `tuf/__init__.py` to the new version number vA.B.C | ||
* Test packaging, uploading to Test PyPI and installing from a virtual environment | ||
* Remove existing dist build dirs | ||
* Create source dist `python setup.py sdist` | ||
* Create wheel (with 2 and 3 support) `python setup.py bdist_wheel --universal` | ||
* Sign the dists `gpg --detach-sign -a dist/tuf-vA.B.C.tar.gz` | ||
* Upload to test PyPI `twine upload --repository testpypi dist/*` | ||
* Verify the uploaded package https://testpypi.python.org/pypi/tuf/ | ||
* Create a PR with updated CHANGELOG.md and version bumps | ||
* Once the PR is merged, pull the updated `develop` branch locally | ||
* Create a signed tag matching the updated version number on the merge commit | ||
`git tag --sign vA.B.C` | ||
* Create a new release on GitHub, copying the CHANGELOG.md entries for the release | ||
* Create a package for the formal release | ||
* Remove existing dist build dirs | ||
* Create source dist `python setup.py sdist` | ||
* Create wheel (with 2 and 3 support) `python setup.py bdist_wheel --universal` | ||
* Sign source dist `gpg --detach-sign -a dist/tuf-vA.B.C.tar.gz` | ||
* Sign wheel `gpg --detach-sign -a dist/tuf-vA.B.C-py2.py3-none-any.whl` | ||
* Upload to test PyPI `twine upload --repository testpypi dist/*` | ||
* Verify the uploaded package https://testpypi.python.org/pypi/tuf/ | ||
* Upload to PyPI `twine upload dist/*` | ||
* Attach the signed dists to the release on GitHub | ||
* Announce the release on [#tuf on CNCF Slack](https://cloud-native.slack.com/archives/C8NMD3QJ3) | ||
* Ensure [POUF 1](https://github.com/theupdateframework/taps/blob/master/POUFs/reference-POUF/pouf1.md), for the reference implementation, is up-to-date |
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't currently perform this step, as @vladimir-v-diaz is the owner of that package on test.pypi.org