diff options
author | Sebastian Porto <s@porto5.com> | 2020-12-20 13:14:33 +1100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2020-12-21 10:38:52 +0000 |
commit | ef62cdcc3e0a9a6c333aacc309e6d5624f29777f (patch) | |
tree | e1bfcad198b0a0116c0c8e47b34389b73b9181b6 /CHANGELOG.md | |
parent | e4d09202ab7d3b0a4bc52213858ce939b0a2a6dd (diff) | |
download | gleam_stdlib-ef62cdcc3e0a9a6c333aacc309e6d5624f29777f.tar.gz gleam_stdlib-ef62cdcc3e0a9a6c333aacc309e6d5624f29777f.zip |
Change queue.from_list. Fix queue.pop_back and queue.pop_front
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 36ef33d..a6fdafa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ - The `bool` module gains the `nand`, `nor`, `exclusive_nor`, and `exclusive_or` functions. - The `bit_builder` module gains the `from_string_builder` function. - The `list` modules gains the `permutations` function. +- Breaking change in `queue.from_list`. The head element in the list becomes the first element in the queue. +- Fix `queue.pop_back` and `queue.pop_front` ## v0.12.0 - 2020-11-04 |