diff options
author | Louis Pilfold <louis@lpil.uk> | 2021-06-17 11:38:29 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-06-17 11:38:29 +0100 |
commit | 5de06a97e35a8bd5e55653f5619562495c48f8bc (patch) | |
tree | 0a361c32fa7bef331ab3286c09b778b67557560b | |
parent | 971c07becc5fcc9ee35d4a69aa06c8f22e38d061 (diff) | |
download | gleam_stdlib-5de06a97e35a8bd5e55653f5619562495c48f8bc.tar.gz gleam_stdlib-5de06a97e35a8bd5e55653f5619562495c48f8bc.zip |
v0.16.0v0.16.0
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | gleam.toml | 2 | ||||
-rw-r--r-- | src/gleam_stdlib.app.src | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 12abe0b..39cf839 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.16.0 - 2021-06-17 - The `list` module gains the `interleave`, `flat_map` and `transpose` functions. - The `option` module gains the `all` and `values` functions. @@ -1,5 +1,5 @@ name = "gleam_stdlib" -version = "0.15.0" +version = "0.16.0" [repository] type = "github" diff --git a/src/gleam_stdlib.app.src b/src/gleam_stdlib.app.src index 7007ddb..f1a0e0d 100644 --- a/src/gleam_stdlib.app.src +++ b/src/gleam_stdlib.app.src @@ -1,6 +1,6 @@ {application,gleam_stdlib, [{description,"A standard library for the Gleam programming language"}, - {vsn,"0.15.0"}, + {vsn,"0.16.0"}, {registered,[]}, {applications,[kernel,stdlib]}, {env,[]}, |