-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Add template for quarterly release issue #8932
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
+56
−29
Merged
Changes from 3 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
4c22277
Add template for quarterly release issue
aclark4life 8ab3bc4
Update .github/ISSUE_TEMPLATE/RELEASE.md
aclark4life 0205fb4
Update .github/ISSUE_TEMPLATE/RELEASE.md
aclark4life 6f67219
Branch uses .x
radarhere 6881863
Update .github/ISSUE_TEMPLATE/RELEASE.md
aclark4life fcaffa2
Update .github/ISSUE_TEMPLATE/RELEASE.md
aclark4life 1eba198
Update .github/ISSUE_TEMPLATE/RELEASE.md
aclark4life e6ff423
Update .github/ISSUE_TEMPLATE/RELEASE.md
aclark4life e140027
Move checklist to issue template
aclark4life f1d5cda
Use sentence case
radarhere dbe538a
Updated template name
radarhere 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| --- | ||
| name: Release | ||
| about: Schedule a release | ||
| --- | ||
|
|
||
| ## Main Release | ||
aclark4life marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Released quarterly on January 2nd, April 1st, July 1st and October 15th. | ||
|
|
||
| * [ ] Open a release ticket e.g. https://github.com/python-pillow/Pillow/issues/3154 | ||
| * [ ] Develop and prepare release in `main` branch. | ||
| * [ ] Add release notes e.g. https://github.com/python-pillow/Pillow/pull/8885 | ||
| * [ ] Check [GitHub Actions](https://github.com/python-pillow/Pillow/actions) to confirm passing tests in `main` branch. | ||
| * [ ] Check that all the wheel builds pass the tests in the [GitHub Actions "Wheels" workflow](https://github.com/python-pillow/Pillow/actions/workflows/wheels.yml) jobs by manually triggering them. | ||
| * [ ] In compliance with [PEP 440](https://peps.python.org/pep-0440/), update version identifier in `src/PIL/_version.py` | ||
| * [ ] Run pre-release check via `make release-test` in a freshly cloned repo. | ||
| * [ ] Create branch and tag for release e.g.: | ||
| ```bash | ||
| git branch [[MAJOR.MINOR]].0 | ||
radarhere marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| git tag [[MAJOR.MINOR]].0 | ||
| git push --tags | ||
| ``` | ||
| * [ ] Check the [GitHub Actions "Wheels" workflow](https://github.com/python-pillow/Pillow/actions/workflows/wheels.yml) has passed, including the "Upload release to PyPI" job. This will have been triggered by the new tag. | ||
| * [ ] Publish the [release on GitHub](https://github.com/python-pillow/Pillow/releases). | ||
| * [ ] In compliance with [PEP 440](https://peps.python.org/pep-0440/), increment and append `.dev0` to version identifier in `src/PIL/_version.py` and then: | ||
| ```bash | ||
| git push --all | ||
| ``` | ||
|
|
||
| ## Publicize Release | ||
aclark4life marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| * [ ] Announce release availability via [Mastodon](https://fosstodon.org/@pillow) e.g. https://fosstodon.org/@pillow/110639450470725321 | ||
|
|
||
| ## Documentation | ||
|
|
||
| * [ ] Make sure the [default version for Read the Docs](https://pillow.readthedocs.io/en/stable/) is up-to-date with the release changes | ||
|
|
||
| ## Docker Images | ||
aclark4life marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| * [ ] Update Pillow in the Docker Images repository | ||
| ```bash | ||
| git clone https://github.com/python-pillow/docker-images | ||
| cd docker-images | ||
| ./update-pillow-tag.sh [[release tag]] | ||
| ``` | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.