You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
about: For maintainers to schedule a quarterly release
4
+
labels: Release
5
+
---
6
+
7
+
## Main release
8
+
9
+
Released quarterly on January 2nd, April 1st, July 1st and October 15th.
10
+
11
+
*[ ] Open a release ticket e.g. https://github.com/python-pillow/Pillow/issues/3154
12
+
*[ ] Develop and prepare release in `main` branch.
13
+
*[ ] Add release notes e.g. https://github.com/python-pillow/Pillow/pull/8885
14
+
*[ ] Check [GitHub Actions](https://github.com/python-pillow/Pillow/actions) to confirm passing tests in `main` branch.
15
+
*[ ] 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.
16
+
*[ ] In compliance with [PEP 440](https://peps.python.org/pep-0440/), update version identifier in `src/PIL/_version.py`
17
+
*[ ] Run pre-release check via `make release-test` in a freshly cloned repo.
18
+
*[ ] Create branch and tag for release e.g.:
19
+
```bash
20
+
git branch [[MAJOR.MINOR]].x
21
+
git tag [[MAJOR.MINOR]].0
22
+
git push --tags
23
+
```
24
+
*[ ] 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.
25
+
*[ ] Publish the [release on GitHub](https://github.com/python-pillow/Pillow/releases).
26
+
*[ ] 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:
27
+
```bash
28
+
git push --all
29
+
```
30
+
31
+
## Publicize release
32
+
33
+
*[ ] Announce release availability via [Mastodon](https://fosstodon.org/@pillow) e.g. https://fosstodon.org/@pillow/110639450470725321
34
+
35
+
## Documentation
36
+
37
+
*[ ] Make sure the [default version for Read the Docs](https://pillow.readthedocs.io/en/stable/) is up-to-date with the release changes
38
+
39
+
## Docker images
40
+
41
+
*[ ] Update Pillow in the Docker Images repository
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ This library provides extensive file format support, an efficient internal repre
95
95
96
96
The core image library is designed for fast access to data stored in a few basic pixel formats. It should provide a solid foundation for a general image processing tool.
Copy file name to clipboardExpand all lines: RELEASING.md
+8-27Lines changed: 8 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,34 +1,15 @@
1
-
# Release Checklist
1
+
# Release checklist
2
2
3
3
See https://pillow.readthedocs.io/en/stable/releasenotes/versioning.html for
4
4
information about how the version numbers line up with releases.
5
5
6
-
## Main Release
6
+
## Main release
7
7
8
8
Released quarterly on January 2nd, April 1st, July 1st and October 15th.
9
9
10
-
*[ ] Open a release ticket e.g. https://github.com/python-pillow/Pillow/issues/3154
11
-
*[ ] Develop and prepare release in `main` branch.
12
-
*[ ] Check [GitHub Actions](https://github.com/python-pillow/Pillow/actions) to confirm passing tests in `main` branch.
13
-
*[ ] 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.
14
-
*[ ] In compliance with [PEP 440](https://peps.python.org/pep-0440/), update version identifier in `src/PIL/_version.py`
15
-
*[ ] Run pre-release check via `make release-test` in a freshly cloned repo.
16
-
*[ ] Create branch and tag for release e.g.:
17
-
```bash
18
-
git branch 5.2.x
19
-
git tag 5.2.0
20
-
git push --tags
21
-
```
22
-
*[ ] Check the [GitHub Actions "Wheels" workflow](https://github.com/python-pillow/Pillow/actions/workflows/wheels.yml)
23
-
has passed, including the "Upload release to PyPI" job. This will have been triggered
24
-
by the new tag.
25
-
*[ ] Publish the [release on GitHub](https://github.com/python-pillow/Pillow/releases).
26
-
*[ ] In compliance with [PEP 440](https://peps.python.org/pep-0440/),
27
-
increment and append `.dev0` to version identifier in `src/PIL/_version.py` and then:
28
-
```bash
29
-
git push --all
30
-
```
31
-
## Point Release
10
+
*[ ] Create a new issue and select the "Maintainers only: Release" template.
11
+
12
+
## Point release
32
13
33
14
Released as needed for security, installation or critical bug fixes.
34
15
@@ -58,7 +39,7 @@ Released as needed for security, installation or critical bug fixes.
58
39
git push
59
40
```
60
41
61
-
## Embargoed Release
42
+
## Embargoed release
62
43
63
44
Released as needed privately to individual vendors for critical security-related bug fixes.
64
45
@@ -82,15 +63,15 @@ Released as needed privately to individual vendors for critical security-related
82
63
git push origin 2.5.x
83
64
```
84
65
85
-
## Publicize Release
66
+
## Publicize release
86
67
87
68
*[ ] Announce release availability via [Mastodon](https://fosstodon.org/@pillow) e.g. https://fosstodon.org/@pillow/110639450470725321
88
69
89
70
## Documentation
90
71
91
72
*[ ] Make sure the [default version for Read the Docs](https://pillow.readthedocs.io/en/stable/) is up-to-date with the release changes
92
73
93
-
## Docker Images
74
+
## Docker images
94
75
95
76
*[ ] Update Pillow in the Docker Images repository
0 commit comments