diff options
author | Louis Pilfold <louis@lpil.uk> | 2021-07-18 13:42:19 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-07-18 13:42:19 +0100 |
commit | 6b449f10ee19c3012cfb8c33d9c687acd4d0d303 (patch) | |
tree | 79300b3c598169a88f392b0e3a5545efd7cc0e1c /CHANGELOG.md | |
parent | d62180206eabec96599b7e00002c211075732264 (diff) | |
download | gleam_stdlib-6b449f10ee19c3012cfb8c33d9c687acd4d0d303.tar.gz gleam_stdlib-6b449f10ee19c3012cfb8c33d9c687acd4d0d303.zip |
Remove os module
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 88b43f4..2440c2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Unreleased +- The `os` module has been moved to the `gleam_os` library. - The `bool`, `order`, and `pair` modules now support JavaScript compilation. - The `map.update` function now uses `Option` rather than `Result`. - The `iterator` module gains the `fold_until` function. @@ -46,7 +47,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 `index_fold`, `permutations`, and `try_fold` functions. -- Breaking change in `queue.from_list`. The head element in the list becomes the first element in the queue. +- 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 |