diff --git a/CHANGES.md b/CHANGES.md index 9b615966a..ef8595694 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,6 +9,13 @@ creating a new release entry be sure to copy & paste the span tag with the updated. Only the first match gets replaced, so it's fine to leave the old ones in. --> +## 2.3.2 (Released 2024-11-11) + +### Fixes + +[#2818](https://github.com/metomi/rose/pull/2818) - +Fixed `rose app-run` and `rose task-run` crashing if git is not installed. + ## 2.3.1 (Released 2024-07-18) diff --git a/metomi/rose/__init__.py b/metomi/rose/__init__.py index 093646888..d55bce845 100644 --- a/metomi/rose/__init__.py +++ b/metomi/rose/__init__.py @@ -144,4 +144,4 @@ # Paths in the Rose distribution. FILEPATH_README = "README.md" -__version__ = "2.3.2.dev" +__version__ = "2.3.2"