diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-08-05 17:00:22 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-08-05 17:00:22 +0300 |
commit | e765091c2e34f5ac3cd84cf5a61c30ec0868e0a9 (patch) | |
tree | a2bbf8b48d6b6f50d5392e600a59ff1c0be89c89 | |
parent | d82c7e3c23ce6f3b0b68aea034c3f9d4d7b68935 (diff) | |
download | meson-e765091c2e34f5ac3cd84cf5a61c30ec0868e0a9.zip meson-e765091c2e34f5ac3cd84cf5a61c30ec0868e0a9.tar.gz meson-e765091c2e34f5ac3cd84cf5a61c30ec0868e0a9.tar.bz2 |
Updated release notes.
-rw-r--r-- | docs/markdown/Release-notes-for-0.42.0.md | 11 |
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. |