diff options
author | Louis Pilfold <louis@lpil.uk> | 2023-12-17 17:40:02 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2023-12-17 17:40:02 +0000 |
commit | 86c25554fca51fe485ba9ca436374854c06d64c0 (patch) | |
tree | 2c432ff9c347d7a1bc61438c27c599e4726b6b35 | |
parent | a5504caa00d237fe3a7aa4509d65050356acc260 (diff) | |
download | gleam_stdlib-86c25554fca51fe485ba9ca436374854c06d64c0.tar.gz gleam_stdlib-86c25554fca51fe485ba9ca436374854c06d64c0.zip |
Changes!
-rw-r--r-- | CHANGELOG.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e9d6b8..d95773a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ # Changelog -- Changed `list.index_map` callback signature to `fn(a, Int) -> b` from `fn(Int, a) -> b`, to be consistent with `list.index_fold`. -- Changed `iterator.index` to return `Iterator(#(a, Int))` instead of `Iterator(#(Int, a))`. +## Unreleased + +- Changed `list.index_map` callback signature to `fn(a, Int) -> b` from + `fn(Int, a) -> b`, to be consistent with `list.index_fold`. +- Changed `iterator.index` to return `Iterator(#(a, Int))` instead of + `Iterator(#(Int, a))`. ## v0.33.1 - 2023-12-02 |