diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d1e39e3b..d6dec88e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## v2.33.1 (2023-12-11) + +### Fix + +* Replace `mktemp` with `mkstemp` when caching to disk for legacy plugins ([#1055](https://github.com/imageio/imageio/issues/1055)) ([`12b1ad2`](https://github.com/imageio/imageio/commit/12b1ad24f9a613d42c282c6581207f6899ef7f45)) + +### Other + +* Fix grammar in ImportError ([#1054](https://github.com/imageio/imageio/issues/1054)) ([`56cfd79`](https://github.com/imageio/imageio/commit/56cfd7905358d88e50ab43da6e864e13c88d2be5)) + ## v2.33.0 (2023-11-20) ### Fix diff --git a/imageio/__init__.py b/imageio/__init__.py index 81b25c85a..8903fd30e 100644 --- a/imageio/__init__.py +++ b/imageio/__init__.py @@ -16,7 +16,7 @@ # flake8: noqa -__version__ = "2.33.0" +__version__ = "2.33.1" import warnings