From b76ff13478a5123e4d8b422586aaa54c791f2604 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Sat, 20 Apr 2024 12:00:25 -0500 Subject: [PATCH] Designate 0.23.2 release --- RELEASE.txt | 5 +- doc/source/_static/version_switcher.json | 2 +- .../{release_0.23.1.rst => release_0.23.rst} | 56 +++++++++++++++++++ doc/source/release_notes/release_dev.rst | 42 -------------- skimage/__init__.py | 2 +- 5 files changed, 61 insertions(+), 46 deletions(-) rename doc/source/release_notes/{release_0.23.1.rst => release_0.23.rst} (88%) delete mode 100644 doc/source/release_notes/release_dev.rst diff --git a/RELEASE.txt b/RELEASE.txt index 03f0949ffe0..f796ef87af5 100644 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -11,7 +11,7 @@ permissions (if not, you will need to ask an owner to grant you access), specifically to: - https://pypi.org/project/scikit-image/ - - https://github.com/scikit-image/scikit-image-web + - https://github.com/scikit-image/skimage-web - Check ``TODO.txt`` for any outstanding tasks. @@ -73,7 +73,8 @@ Example `version number` - If this is a release: - - update the file ``skimage/data/_fetchers.py`` to point the pooch + - (Only needed if you create a new branch) + update the file ``skimage/data/_fetchers.py`` to point the pooch repository to the new branch instead of main during testing. Look for the parameter ``version_dev="main",`` for ``pooch.create`` and change it to the newly created branch name. diff --git a/doc/source/_static/version_switcher.json b/doc/source/_static/version_switcher.json index bb6cfe2dd36..0a7b2ac996b 100644 --- a/doc/source/_static/version_switcher.json +++ b/doc/source/_static/version_switcher.json @@ -6,7 +6,7 @@ }, { "name": "0.23 (stable)", - "version":"0.23.1", + "version":"0.23.2", "url": "https://scikit-image.org/docs/stable/", "preferred": true }, diff --git a/doc/source/release_notes/release_0.23.1.rst b/doc/source/release_notes/release_0.23.rst similarity index 88% rename from doc/source/release_notes/release_0.23.1.rst rename to doc/source/release_notes/release_0.23.rst index a4c9c18a24a..46cc897861b 100644 --- a/doc/source/release_notes/release_0.23.1.rst +++ b/doc/source/release_notes/release_0.23.rst @@ -1,3 +1,54 @@ +scikit-image 0.23.2 (2024-04-20) +================================ + +We're happy to announce the release of scikit-image 0.23.2! + +Bug Fixes +--------- + +- Make sure ``skimage.util.img_as_ubyte`` supports the edge case where ``dtype('uint64').type`` of the provided image is ``np.ulonglong`` instead of ``np.uint64`` (`#7392 `_). + +Documentation +------------- + +- Add date to 0.23.1 release notes (`#7384 `_). +- Fix docstring of ``connectivity`` parameter in ``skimage.segmentation.watershed`` (`#7360 `_). + +Infrastructure +-------------- + +- Ignore Sphinx warning about unpickable cache (`#7400 `_). +- Simplify instructions on changelist in PR template (`#7401 `_). + +Maintenance +----------- + +- Use ``numpy.inf`` instead of deprecated ``numpy.infty`` (`#7386 `_). +- Update Ruff config (`#7387 `_). +- Update matrix and names of Azure pipelines configuration (`#7390 `_). +- Use upload- and download-artifact v4 (`#7389 `_). +- Ignore arch specific cast warnings originating from ``astype`` in tests (`#7393 `_). +- Update link to numpydoc example.py (`#7395 `_). + +Contributors +------------ + +4 authors added to this release (alphabetically): + +- `@pitkajuh `_ +- Jarrod Millman (`@jarrodmillman `_) +- Lars Grüter (`@lagru `_) +- Marianne Corvellec (`@mkcor `_) + +4 reviewers added to this release (alphabetically): + +- Egor Panfilov (`@soupault `_) +- Jarrod Millman (`@jarrodmillman `_) +- Lars Grüter (`@lagru `_) +- Marianne Corvellec (`@mkcor `_) + +_These lists are automatically generated, and may not be complete or may contain duplicates._ + scikit-image 0.23.1 (2024-04-10) ================================ @@ -204,3 +255,8 @@ Contributors - Stefan van der Walt (`@stefanv `_) _These lists are automatically generated, and may not be complete or may contain duplicates._ + +scikit-image 0.23.0 +=================== + +Unreleased due to an issue with the CI system. diff --git a/doc/source/release_notes/release_dev.rst b/doc/source/release_notes/release_dev.rst deleted file mode 100644 index ff295d30b2f..00000000000 --- a/doc/source/release_notes/release_dev.rst +++ /dev/null @@ -1,42 +0,0 @@ -scikit-image 0.23.2rc1 -====================== - -We're happy to announce the release of scikit-image 0.23.2rc1! - -Bug Fixes ---------- - -- Make sure ``skimage.util.img_as_ubyte`` supports the edge case where ``dtype('uint64').type`` of the provided image is ``np.ulonglong`` instead of ``np.uint64`` (`#7392 `_). - -Documentation -------------- - -- Add date to 0.23.1 release notes (`#7384 `_). -- Fix docstring of ``connectivity`` parameter in ``skimage.segmentation.watershed`` (`#7360 `_). - -Maintenance ------------ - -- Use ``numpy.inf`` instead of deprecated ``numpy.infty`` (`#7386 `_). -- Update Ruff config (`#7387 `_). -- Update matrix and names of Azure pipelines configuration (`#7390 `_). -- Ignore arch specific cast warnings originating from ``astype`` in tests (`#7393 `_). -- Update link to numpydoc example.py (`#7395 `_). - -Contributors ------------- - -4 authors added to this release (alphabetically): - -- `@pitkajuh `_ -- Jarrod Millman (`@jarrodmillman `_) -- Lars Grüter (`@lagru `_) -- Marianne Corvellec (`@mkcor `_) - -3 reviewers added to this release (alphabetically): - -- Egor Panfilov (`@soupault `_) -- Jarrod Millman (`@jarrodmillman `_) -- Lars Grüter (`@lagru `_) - -_These lists are automatically generated, and may not be complete or may contain duplicates._ diff --git a/skimage/__init__.py b/skimage/__init__.py index 1ad73b64ad0..d3f7551777c 100644 --- a/skimage/__init__.py +++ b/skimage/__init__.py @@ -65,7 +65,7 @@ """ -__version__ = '0.23.2rc2.dev0' +__version__ = '0.23.2' import lazy_loader as lazy