diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-29 02:48:58 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-29 02:48:58 +0300 |
commit | 52c4ca4afda8063948db722789798b13265d9a9e (patch) | |
tree | 87bc48c89bb62de16b869b0af0bebadb3519dc00 | |
parent | d6c4e79c8443005639c60693510a5f62d6e0dc96 (diff) | |
download | meson-52c4ca4afda8063948db722789798b13265d9a9e.zip meson-52c4ca4afda8063948db722789798b13265d9a9e.tar.gz meson-52c4ca4afda8063948db722789798b13265d9a9e.tar.bz2 |
Moved changes from preliminary relnote page to snippets. [skip ci]
-rw-r--r-- | docs/markdown/Release-notes-for-0.52.0.md | 11 | ||||
-rw-r--r-- | docs/markdown/snippets/blocks.md | 3 | ||||
-rw-r--r-- | docs/markdown/snippets/check-disabler.md | 5 |
3 files changed, 9 insertions, 10 deletions
diff --git a/docs/markdown/Release-notes-for-0.52.0.md b/docs/markdown/Release-notes-for-0.52.0.md index de317df..f5bbcc3 100644 --- a/docs/markdown/Release-notes-for-0.52.0.md +++ b/docs/markdown/Release-notes-for-0.52.0.md @@ -3,13 +3,4 @@ title: Release 0.52.0 short-description: Release notes for 0.52.0 ... -# New features - -## Allow checking if a variable is a disabler - -Added the function `is_disabler(var)`. Returns true if a variable is a disabler -and false otherwise. - -## Add blocks dependency - -Add `dependency('blocks')` to use the Clang blocks extension. +# Notable changes in this version diff --git a/docs/markdown/snippets/blocks.md b/docs/markdown/snippets/blocks.md new file mode 100644 index 0000000..917ee54 --- /dev/null +++ b/docs/markdown/snippets/blocks.md @@ -0,0 +1,3 @@ +## Add blocks dependency + +Add `dependency('blocks')` to use the Clang blocks extension. diff --git a/docs/markdown/snippets/check-disabler.md b/docs/markdown/snippets/check-disabler.md new file mode 100644 index 0000000..9670792 --- /dev/null +++ b/docs/markdown/snippets/check-disabler.md @@ -0,0 +1,5 @@ +## Allow checking if a variable is a disabler + +Added the function `is_disabler(var)`. Returns true if a variable is a disabler +and false otherwise. + |