diff options
author | Robert Attard <robert.attard@mail.mcgill.ca> | 2021-10-13 04:08:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-13 09:08:46 +0100 |
commit | 8abe053e33c3d3b99d2d069fef11ef9f1402b168 (patch) | |
tree | f76df8decf4fa88190a36e1f7f634cdd2256720d /CHANGELOG.md | |
parent | a2984381b7cac464adf35b446981bbd5da710466 (diff) | |
download | gleam_stdlib-8abe053e33c3d3b99d2d069fef11ef9f1402b168.tar.gz gleam_stdlib-8abe053e33c3d3b99d2d069fef11ef9f1402b168.zip |
#238 : result returned from int.to_string_base and add int.to_baseN (#239)
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index cb9b0da..61ae7eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ - The `iterator` module gains the `first` and `at` functions. - The `list` module renames the `head` and `tail` functions to `first` and `rest`. +- `int.to_base_string` now returns a `Result(Int, InvalidBase)`. +- The `int` module gains the `to_base2`, `to_base8`, `to_base16` and `to_base36` functions. ## v0.17.1 - 2021-09-15 |