diff options
author | Alex Rothuis <alex.rothuis@gmail.com> | 2022-11-05 17:12:36 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-11-06 16:45:54 +0000 |
commit | c22ffd9244f2c6bbfb560b6d637eabca08414e99 (patch) | |
tree | f903f3e769d28f2567a61cb06431ecf9ae86124d | |
parent | 639ad650cd0bae566f5a7f96764b6cd7b05559c0 (diff) | |
download | gleam_stdlib-c22ffd9244f2c6bbfb560b6d637eabca08414e99.tar.gz gleam_stdlib-c22ffd9244f2c6bbfb560b6d637eabca08414e99.zip |
Add operator functions to change log
-rw-r--r-- | CHANGELOG.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index dd0029f..4de7ae2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## v0.24.1 - unreleased +- The `bool` module gains the `and` and `or` functions. +- The `float` module gains the `add`, `subtract` and `multiply` functions. +- The `int` module gains the `add`, `subtract` and `multiply` functions. - Fixed a bug where `list.permutations` would not correctly permutate lists with non-unique item values. - For `regexp.compile` unicode character properties are now used when |