Skip to content

Commit

Permalink
Designate 0.23.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Apr 20, 2024
1 parent b5f2ee9 commit b76ff13
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 46 deletions.
5 changes: 3 additions & 2 deletions RELEASE.txt
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/_static/version_switcher.json
Expand Up @@ -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
},
Expand Down
@@ -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 <https://github.com/scikit-image/scikit-image/pull/7392>`_).

Documentation
-------------

- Add date to 0.23.1 release notes (`#7384 <https://github.com/scikit-image/scikit-image/pull/7384>`_).
- Fix docstring of ``connectivity`` parameter in ``skimage.segmentation.watershed`` (`#7360 <https://github.com/scikit-image/scikit-image/pull/7360>`_).

Infrastructure
--------------

- Ignore Sphinx warning about unpickable cache (`#7400 <https://github.com/scikit-image/scikit-image/pull/7400>`_).
- Simplify instructions on changelist in PR template (`#7401 <https://github.com/scikit-image/scikit-image/pull/7401>`_).

Maintenance
-----------

- Use ``numpy.inf`` instead of deprecated ``numpy.infty`` (`#7386 <https://github.com/scikit-image/scikit-image/pull/7386>`_).
- Update Ruff config (`#7387 <https://github.com/scikit-image/scikit-image/pull/7387>`_).
- Update matrix and names of Azure pipelines configuration (`#7390 <https://github.com/scikit-image/scikit-image/pull/7390>`_).
- Use upload- and download-artifact v4 (`#7389 <https://github.com/scikit-image/scikit-image/pull/7389>`_).
- Ignore arch specific cast warnings originating from ``astype`` in tests (`#7393 <https://github.com/scikit-image/scikit-image/pull/7393>`_).
- Update link to numpydoc example.py (`#7395 <https://github.com/scikit-image/scikit-image/pull/7395>`_).

Contributors
------------

4 authors added to this release (alphabetically):

- `@pitkajuh <https://github.com/pitkajuh>`_
- Jarrod Millman (`@jarrodmillman <https://github.com/jarrodmillman>`_)
- Lars Grüter (`@lagru <https://github.com/lagru>`_)
- Marianne Corvellec (`@mkcor <https://github.com/mkcor>`_)

4 reviewers added to this release (alphabetically):

- Egor Panfilov (`@soupault <https://github.com/soupault>`_)
- Jarrod Millman (`@jarrodmillman <https://github.com/jarrodmillman>`_)
- Lars Grüter (`@lagru <https://github.com/lagru>`_)
- Marianne Corvellec (`@mkcor <https://github.com/mkcor>`_)

_These lists are automatically generated, and may not be complete or may contain duplicates._

scikit-image 0.23.1 (2024-04-10)
================================

Expand Down Expand Up @@ -204,3 +255,8 @@ Contributors
- Stefan van der Walt (`@stefanv <https://github.com/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.
42 changes: 0 additions & 42 deletions doc/source/release_notes/release_dev.rst

This file was deleted.

2 changes: 1 addition & 1 deletion skimage/__init__.py
Expand Up @@ -65,7 +65,7 @@
"""

__version__ = '0.23.2rc2.dev0'
__version__ = '0.23.2'

import lazy_loader as lazy

Expand Down

0 comments on commit b76ff13

Please sign in to comment.