diff --git a/doc/source/release_notes/release_dev.rst b/doc/source/release_notes/release_dev.rst index 284cb945723..22b75d6319b 100644 --- a/doc/source/release_notes/release_dev.rst +++ b/doc/source/release_notes/release_dev.rst @@ -1,7 +1,7 @@ -scikit-image 0.22.0rc0 +scikit-image 0.22.0rc1 ====================== -We're happy to announce the release of scikit-image 0.22.0rc0! +We're happy to announce the release of scikit-image 0.22.0rc1! New Features ------------ @@ -93,6 +93,8 @@ Maintenance - Filter out expected runtime warnings in registation.phase_cross_correlation when disambiguate=True (`#7147 `_). - Use pre-commit bot (`#7171 `_). - Fix missing warnings import in ``phase_cross_correlation`` (`#7175 `_). +- Fix release notes error (`#7177 `_). +- Use trusted publisher (`#7178 `_). Documentation ------------- diff --git a/skimage/__init__.py b/skimage/__init__.py index 5aba8e61ec7..3a7b7dd9494 100644 --- a/skimage/__init__.py +++ b/skimage/__init__.py @@ -65,7 +65,7 @@ """ -__version__ = '0.22.0rc1.dev0' +__version__ = '0.22.0rc1' from ._shared.version_requirements import ensure_python_version ensure_python_version((3, 8))