From e765091c2e34f5ac3cd84cf5a61c30ec0868e0a9 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 5 Aug 2017 17:00:22 +0300 Subject: [PATCH] Updated release notes. --- docs/markdown/Release-notes-for-0.42.0.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/markdown/Release-notes-for-0.42.0.md b/docs/markdown/Release-notes-for-0.42.0.md index f0ea534c1..78a5917f7 100644 --- a/docs/markdown/Release-notes-for-0.42.0.md +++ b/docs/markdown/Release-notes-for-0.42.0.md @@ -83,3 +83,14 @@ flag manually, e.g. via `link_args` to a target. This is not recommended because having multiple rpath causes them to stomp on each other. This warning will become a hard error in some future release. +## Make all Meson functionality invokable via the main executable + +Previously Meson had multiple executables such as `mesonintrospect` +and `mesontest`. Thes are now invokable via the main Meson executable +like this: + + meson configure # equivalent to mesonconf + meson test # equivalent to mesontest + +The old commands are still available but they are deprecated +and will be removed in some future release.