diff --git a/NEWS.md b/NEWS.md index c544bab1c..75bdda066 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,9 @@ # mkosi Changelog +## v23.1 + +- Respin due to git tag mismatch + ## v23 - Added `CleanScripts=` to allow running custom cleanup code whenever diff --git a/mkosi/config.py b/mkosi/config.py index 327c0c782..ec86ee6c4 100644 --- a/mkosi/config.py +++ b/mkosi/config.py @@ -48,7 +48,7 @@ ) from mkosi.versioncomp import GenericVersion -__version__ = "24~devel" +__version__ = "23.1" ConfigParseCallback = Callable[[Optional[str], Optional[Any]], Any] ConfigMatchCallback = Callable[[str, Any], bool] diff --git a/pyproject.toml b/pyproject.toml index d2fd0746d..a44bfaae7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "mkosi" authors = [ {name = "mkosi contributors", email = "systemd-devel@lists.freedesktop.org"}, ] -version = "23" +version = "23.1" description = "Build Bespoke OS Images" readme = "README.md" requires-python = ">=3.9"