aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/markdown/Release-notes-for-0.42.0.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/markdown/Release-notes-for-0.42.0.md b/docs/markdown/Release-notes-for-0.42.0.md
index f0ea534..78a5917 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 <arguments> # equivalent to mesonconf <options>
+ meson test <arguments> # equivalent to mesontest <arguments>
+
+The old commands are still available but they are deprecated
+and will be removed in some future release.