From 9cda1b32ab902422e658f27e0e51354d0ee59bdd Mon Sep 17 00:00:00 2001 From: Hugo Date: Wed, 2 Jan 2019 14:45:29 +0200 Subject: [PATCH 1/4] Remove hyphen, to include source: Pillow-5.4.0.tar.gz --- RELEASING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index 8a7a34157..38e074621 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -23,7 +23,7 @@ Released quarterly on the first day of January, April, July, October. $ make sdist ``` * [ ] Create [binary distributions](#binary-distributions) -* [ ] Upload all binaries and source distributions e.g. ``twine upload dist/Pillow-5.2.0-*`` +* [ ] Upload all binaries and source distributions e.g. `twine upload dist/Pillow-5.2.0*` * [ ] Create a [new release on GitHub](https://github.com/python-pillow/Pillow/releases/new) * [ ] In compliance with [PEP 440](https://www.python.org/dev/peps/pep-0440/), append `.dev0` to version identifier in `src/PIL/_version.py` From a437477ff913e097ca4dc4d9e60e2cf89b502c82 Mon Sep 17 00:00:00 2001 From: Hugo Date: Wed, 2 Jan 2019 14:47:17 +0200 Subject: [PATCH 2/4] Use absolute links so they still work when pasting into release issue --- RELEASING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index 38e074621..b0c3b6668 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -22,7 +22,7 @@ Released quarterly on the first day of January, April, July, October. ``` $ make sdist ``` -* [ ] Create [binary distributions](#binary-distributions) +* [ ] Create [binary distributions](https://github.com/python-pillow/Pillow/blob/master/RELEASING.md#binary-distributions) * [ ] Upload all binaries and source distributions e.g. `twine upload dist/Pillow-5.2.0*` * [ ] Create a [new release on GitHub](https://github.com/python-pillow/Pillow/releases/new) * [ ] In compliance with [PEP 440](https://www.python.org/dev/peps/pep-0440/), append `.dev0` to version identifier in `src/PIL/_version.py` @@ -50,7 +50,7 @@ Released as needed for security, installation or critical bug fixes. ``` $ make sdist ``` -* [ ] Create [binary distributions](#binary-distributions) +* [ ] Create [binary distributions](https://github.com/python-pillow/Pillow/blob/master/RELEASING.md#binary-distributions) * [ ] Create a [new release on GitHub](https://github.com/python-pillow/Pillow/releases/new) ## Embargoed Release @@ -74,7 +74,7 @@ Released as needed privately to individual vendors for critical security-related ``` $ make sdist ``` -* [ ] Create [binary distributions](#binary-distributions) +* [ ] Create [binary distributions](https://github.com/python-pillow/Pillow/blob/master/RELEASING.md#binary-distributions) * [ ] Create a [new release on GitHub](https://github.com/python-pillow/Pillow/releases/new) ## Binary Distributions From 63b866ebb27e0bc4364d8d23d2b69101a186f133 Mon Sep 17 00:00:00 2001 From: Hugo Date: Wed, 2 Jan 2019 14:48:46 +0200 Subject: [PATCH 3/4] Increment and append .dev0 to version --- RELEASING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index b0c3b6668..87e9e365f 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -25,7 +25,7 @@ Released quarterly on the first day of January, April, July, October. * [ ] Create [binary distributions](https://github.com/python-pillow/Pillow/blob/master/RELEASING.md#binary-distributions) * [ ] Upload all binaries and source distributions e.g. `twine upload dist/Pillow-5.2.0*` * [ ] Create a [new release on GitHub](https://github.com/python-pillow/Pillow/releases/new) -* [ ] In compliance with [PEP 440](https://www.python.org/dev/peps/pep-0440/), append `.dev0` to version identifier in `src/PIL/_version.py` +* [ ] In compliance with [PEP 440](https://www.python.org/dev/peps/pep-0440/), increment and append `.dev0` to version identifier in `src/PIL/_version.py` ## Point Release From 1276fe42e7d39a733514f9024f4ee2444db1f806 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Thu, 3 Jan 2019 21:56:45 +0200 Subject: [PATCH 4/4] Move Docker image update instructions to own repo Re: https://github.com/python-pillow/Pillow/pull/3523#issuecomment-450855713 --- RELEASING.md | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index 87e9e365f..d840b92b4 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -108,18 +108,3 @@ Released as needed privately to individual vendors for critical security-related * [ ] Make sure the default version for Read the Docs is the latest release version, i.e. ``5.2.0`` rather than ``latest`` e.g. https://pillow.readthedocs.io/en/5.2.x/ -## Docker images - -* [ ] Update Pillow for the [Docker images](https://github.com/python-pillow/docker-images): -``` - $ git clone https://github.com/python-pillow/docker-images - $ cd docker-images - $ git submodule init - $ git submodule update Pillow - $ cd Pillow - $ git fetch --all - $ git checkout [[release tag]] - $ cd .. - $ git commit -m "Pillow -> 5.2.0" Pillow - $ git push -```