aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAl Dee <amyalicedee@gmail.com>2020-05-22 13:38:18 +0100
committerLouis Pilfold <louis@lpil.uk>2020-05-26 19:19:29 +0100
commitef9263252f6ea1b779d0dab6c04c86d8dc59e596 (patch)
tree8535a4461455c8f8094b9b99a7c5c742b34f4ab8
parent33bbf866ed3be72ccce955e5b2ee1bb99fa45e97 (diff)
downloadgleam_stdlib-ef9263252f6ea1b779d0dab6c04c86d8dc59e596.tar.gz
gleam_stdlib-ef9263252f6ea1b779d0dab6c04c86d8dc59e596.zip
Update CHANGELOG.md
-rw-r--r--CHANGELOG.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 76d8b49..3362574 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,11 +2,13 @@
## Unreleased
-
- Created the `io` module with the `print` function.
- Created the `queue` module with the `new`, `from_list`, `to_list`,
`is_empty`, `length`, `push_back`, `push_front`, `pop_back`, `pop_front`,
`reverse`, `is_logically_equal`, and `is_equal` functions.
+- Created the `option` module containing the `Option` type and the `is_some`
+ and `is_none` functions.
+- Removed the `Option` alias and the `none` function from the `result` module.
- The `result` module gains the `nil_error` function.
- The `string` module gains `trim`, `trim_left`, `trim_right`, `starts_with`,
`ends_with`, `slice`, `pad_left`, `pad_right` `drop_left`, `drop_right`,