aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2019-05-10 14:44:23 +0100
committerLouis Pilfold <louis@lpil.uk>2019-05-10 14:44:23 +0100
commitd2823c67e674358a1610f24afa584ddf5f31874d (patch)
treee5536ed6c1c4079e0f7f3471e492636abf97d3d9
parent59a644c59dcebaab9369341ec3419a9ddb2deda8 (diff)
downloadgleam_stdlib-d2823c67e674358a1610f24afa584ddf5f31874d.tar.gz
gleam_stdlib-d2823c67e674358a1610f24afa584ddf5f31874d.zip
Update stdlib changelog
-rw-r--r--CHANGELOG.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f35c9b3..2672166 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,15 +2,18 @@
## Unreleased
-- `map_dict` module gains `update`, `merge` and `delete` functions.
+- The `map_dict` module gains `update`, `merge` and `delete` functions.
+- The `bool` module gains a `compare` function.
+- The `int` module gains a `compare` function.
+- The `list` module gains a `range` function.
## v0.1.2 - 2019-04-25
-- `list` module gains `at`, `all`, `any`, `index_map`, `intersperse`, `sort`,
+- The `list` module gains `at`, `all`, `any`, `index_map`, `intersperse`, `sort`,
`unique`, and `zip` functions.
- `map_dict:Map` renamed to `map_dict:MapDict`.
-- `map_dict` module gains `drop`, and `take` functions.
-- `str` module gains `append` function and loses `from_int`, `parse_int`,
+- The `map_dict` module gains `drop`, and `take` functions.
+- The `str` module gains `append` function and loses `from_int`, `parse_int`,
`from_float`, `parse_float`, and `base_from_int`.
- `int` module created with `parse`, `to_string`, and `to_base_string`.
- `float` module created with `ceiling`, `floor`, `round`, `truncate`,