-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Showing
2 changed files
with
12 additions
and
9 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -1,22 +1,25 @@ | ||
* [ ] Draft a social media announcement | ||
* [ ] See if all tests, including downstream, pass | ||
* [ ] Get the release pull request approved by a [CODEOWNER](https://github.com/urllib3/urllib3/blob/main/.github/CODEOWNERS) | ||
* [ ] Squash merge the release pull request with message "`Release <VERSION>`" | ||
* [ ] Tag with X.Y.Z, push tag on urllib3/urllib3 (not on your fork, update `<REMOTE>` accordingly) | ||
* Notice that the `<VERSION>` shouldn't have a `v` prefix (Use `1.26.6` instead of `v.1.26.6`) | ||
* ``` | ||
# Ensure the release commit is the latest in the main branch. | ||
export VERSION=<X.Y.Z> | ||
export REMOTE=origin | ||
git checkout main | ||
git pull origin main | ||
git tag -s -a '<VERSION>' -m 'Release: <VERSION>' | ||
git push <REMOTE> --tags | ||
git pull $REMOTE main | ||
git tag -s -a "$VERSION" -m "Release: $VERSION" | ||
git push $REMOTE --tags | ||
``` | ||
* [ ] Execute the `publish` GitHub workflow. This requires a review from a maintainer. | ||
* [ ] The tag will trigger the `publish` GitHub workflow. This requires a review from a maintainer. | ||
* [ ] Ensure that all expected artifacts are added to the new GitHub release. Should | ||
be one `.whl`, one `.tar.gz`, and one `multiple.intoto.jsonl`. Update the GitHub | ||
release to have the content of the release's changelog. | ||
release to have the content of the release's changelog and any ongoing announcements. | ||
* [ ] Announce on: | ||
* [ ] Social media | ||
* [ ] Discord | ||
* [ ] OpenCollective | ||
* [ ] Update Tidelift metadata | ||
* [ ] Open Collective | ||
* [ ] Check [Tidelift security maintenance plan](https://tidelift.com/lifter/package/pypi/urllib3/tasks/packages_have_maintenance_plans>) is still correct | ||
* [ ] If this was a 1.26.x release, add changelog to the `main` branch |