diff options
author | Richard Viney <richard.viney@gmail.com> | 2024-11-12 10:56:59 +1300 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-11-12 12:31:33 +0000 |
commit | 408949ff19f973aa0acc7687aaeff1ba57e96464 (patch) | |
tree | cda40b0e621dfcd25c0d2064bae21343843eb9ac /CHANGELOG.md | |
parent | c982361167325650ff4546d62c52f6b3feed24ab (diff) | |
download | gleam_stdlib-408949ff19f973aa0acc7687aaeff1ba57e96464.tar.gz gleam_stdlib-408949ff19f973aa0acc7687aaeff1ba57e96464.zip |
Use `_start` and `_end` suffixes on string functions
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fb04001..f59a135 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ ## Unreleased - The `bit_array` module gains the `bit_size` and `starts_with` functions. +- Ths `string` module gains the `drop_start`, `drop_end`, `pad_start`, + `pad_end`, `trim_start`, and `trim_end` functions. These replace the + `drop_left`, `drop_right`, `pad_left`, `pad_right`, `trim_left`, and + `trim_right` functions, which have been deprecated. ## v0.41.0 - 2024-10-31 |