aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2020-07-01 18:53:36 +0100
committerLouis Pilfold <louis@lpil.uk>2020-07-01 18:53:36 +0100
commit285d9a7e79d12fbad8b50fa79fe3f1e15dce447e (patch)
treef1cf8db37d00463af08c1fdaff0b761b7d402f1d
parentbe064d04b749e206fcd0b69bc6778500a42d70d8 (diff)
downloadgleam_stdlib-285d9a7e79d12fbad8b50fa79fe3f1e15dce447e.tar.gz
gleam_stdlib-285d9a7e79d12fbad8b50fa79fe3f1e15dce447e.zip
v0.10.1v0.10.1
-rw-r--r--CHANGELOG.md6
-rw-r--r--src/gleam_stdlib.app.src2
2 files changed, 5 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c440813..386c184 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,10 @@
# Changelog
+## v0.10.1 - 2020-07-01
+
- Fix `dynamic.string` to check that binary contains only utf8 characters.
-## 0.10.0 - 2020-06-30
+## v0.10.0 - 2020-06-30
- `bit_string` module created with `from_string`, `byte_size`, `append`,
`part`, `to_string`, `is_utf8`, `int_to_u32` and `int_from_u32` functions.
@@ -30,7 +32,7 @@
- `base` module created with `encode64`, `decode64`, `url_encode64` and
`url_decode64`.
-## 0.9.0 - 2020-05-26
+## v0.9.0 - 2020-05-26
- Created the `iterator` module with the `unfold`, `repeatedly`, `repeat`,
`from_list`, `fold`, `run`, `to_list`, `take`, `drop`, `map`, `filter`,
diff --git a/src/gleam_stdlib.app.src b/src/gleam_stdlib.app.src
index cc67494..575887c 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.10.0"},
+ {vsn,"0.10.1"},
{registered,[]},
{applications,[kernel,stdlib]},
{env,[]},