aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2019-05-11 20:25:08 +0100
committerLouis Pilfold <louis@lpil.uk>2019-05-11 20:27:17 +0100
commit93dfae7be8709cf497ecf05e25d1139b8bba34bb (patch)
treeba67d464663bbb8a0b4afd435ba3e9e337884718
parentae854f69b8f40609c0ee6fb1aec8957bd3eac1c2 (diff)
downloadgleam_stdlib-0.2.0.tar.gz
gleam_stdlib-0.2.0.zip
stdlib-v0.2.0v0.2.0
-rw-r--r--CHANGELOG.md10
-rw-r--r--gleam.toml2
-rw-r--r--src/gleam_stdlib.app.src (renamed from src/gleam_experimental_stdlib.app.src)5
3 files changed, 9 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 026597b..e6598c9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,16 +1,18 @@
# Changelog
-## Unreleased
+## v0.2.0 - 2019-05-11
+- Library renamed to `gleam_stdlib`.
- The `map_dict` module gains `update`, `merge` and `delete` functions.
- The `bool` module gains a `compare` function.
- The `int` module gains a `compare` function.
-- The `list` module gains `range`, `repeat`, `split`, `split_while` and `strict_zip` functions.
+- The `list` module gains `range`, `repeat`, `split`, `split_while` and
+ `strict_zip` functions.
## v0.1.2 - 2019-04-25
-- The `list` module gains `at`, `all`, `any`, `index_map`, `intersperse`, `sort`,
- `unique`, and `zip` functions.
+- The `list` module gains `at`, `all`, `any`, `index_map`, `intersperse`,
+ `sort`, `unique`, and `zip` functions.
- `map_dict:Map` renamed to `map_dict:MapDict`.
- The `map_dict` module gains `drop`, and `take` functions.
- The `str` module gains `append` function and loses `from_int`, `parse_int`,
diff --git a/gleam.toml b/gleam.toml
index 99cd7ac..5325cca 100644
--- a/gleam.toml
+++ b/gleam.toml
@@ -1 +1 @@
-name = "gleam_experimental_stdlib"
+name = "gleam_stdlib"
diff --git a/src/gleam_experimental_stdlib.app.src b/src/gleam_stdlib.app.src
index 5012934..547287f 100644
--- a/src/gleam_experimental_stdlib.app.src
+++ b/src/gleam_stdlib.app.src
@@ -1,11 +1,10 @@
-{application,gleam_experimental_stdlib,
+{application,gleam_stdlib,
[{description,"A standard library for the Gleam programming language"},
- {vsn,"0.1.2"},
+ {vsn,"0.2.0"},
{registered,[]},
{applications,[kernel,stdlib]},
{env,[]},
{modules,[]},
- {maintainers,[]},
{licenses,["Apache 2.0"]},
{links,[]},
{include_files,["gleam.toml", "gen"]}]}.