summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2023-06-09 18:38:49 -0400
committerDylan Baker <dylan@pnwbakers.com>2023-06-20 16:10:20 -0700
commit4c85a7af9236325f52b9026c08b32e8090c7d2d7 (patch)
tree78e19711398b6288ec3da8d85c7bb69b65022377 /docs
parent6f2956e76c58c49b12298fbf144399c41c380520 (diff)
downloadmeson-4c85a7af9236325f52b9026c08b32e8090c7d2d7.tar.gz
doc: Dictionaries are ordered since Meson 0.62.0
This is a side effect of requiring Python >= 3.7 which itself guarantees dictionary order. This is now a Meson language guarantee as well which is required for passing default_options as dict and is generally expected by users.
Diffstat (limited to 'docs')
-rw-r--r--docs/yaml/elementary/dict.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/yaml/elementary/dict.yml b/docs/yaml/elementary/dict.yml
index f3ca837d0..19263dfa1 100644
--- a/docs/yaml/elementary/dict.yml
+++ b/docs/yaml/elementary/dict.yml
@@ -8,8 +8,9 @@ description: |
You can also iterate over dictionaries with the [`foreach`
statement](Syntax.md#foreach-statements).
- *(since 0.48.0)* Dictionaries can be added (e.g. `d1 = d2 + d3` and `d1 += d2`).
+ *(since 0.48.0)*: Dictionaries can be added (e.g. `d1 = d2 + d3` and `d1 += d2`).
Values from the second dictionary overrides values from the first.
+ *(since 0.62.0)*: Dictionary order is guaranteed to be insertion order.
methods: