aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Puc <marcin.e.puc@gmail.com>2021-04-15 09:56:22 +0200
committerLouis Pilfold <louis@lpil.uk>2021-04-15 23:03:51 +0100
commitf4c08abeda2050f6614e7c963bf15c3abaca2d7f (patch)
tree1a650ba14ba1cd01cd451e3f59bc65038ad4e4fb
parent0bc70a074193ac9fcabd5df5a0523c4958941f36 (diff)
downloadgleam_stdlib-f4c08abeda2050f6614e7c963bf15c3abaca2d7f.tar.gz
gleam_stdlib-f4c08abeda2050f6614e7c963bf15c3abaca2d7f.zip
Add `last` to changelog
-rw-r--r--CHANGELOG.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 57a3f4c..9c9f678 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,8 +8,8 @@
functions and their typed equivalents `typed_tuple3`, `typed_tuple4`,
`typed_tuple5`, `typed_tuple6`.
- The `list` module gains the `drop_while`, `map_fold`, `take_while`, `reduce`,
- `chunk`, `sized_chunk` and `scan` functions.
-- The `iterator` module gains the `index`, `iterate`, `zip`, `scan`,
+ `chunk`, `sized_chunk`, `last` and `scan` functions.
+- The `iterator` module gains the `index`, `iterate`, `zip`, `scan`, `last`,
`take_while`, `drop_while`, `chunk`, `sized_chunk`, `intersperse`, `reduce`, `any` and `all` functions.
- Breaking change in `iterator.take`. Now it returns an iterator instead of a list.
- The `string` module gains the `crop` function.