Skip to content

Commit 93dfae7

Browse files
committed
stdlib-v0.2.0
1 parent ae854f6 commit 93dfae7

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
# Changelog
22

3-
## Unreleased
3+
## v0.2.0 - 2019-05-11
44

5+
- Library renamed to `gleam_stdlib`.
56
- The `map_dict` module gains `update`, `merge` and `delete` functions.
67
- The `bool` module gains a `compare` function.
78
- The `int` module gains a `compare` function.
8-
- The `list` module gains `range`, `repeat`, `split`, `split_while` and `strict_zip` functions.
9+
- The `list` module gains `range`, `repeat`, `split`, `split_while` and
10+
`strict_zip` functions.
911

1012
## v0.1.2 - 2019-04-25
1113

12-
- The `list` module gains `at`, `all`, `any`, `index_map`, `intersperse`, `sort`,
13-
`unique`, and `zip` functions.
14+
- The `list` module gains `at`, `all`, `any`, `index_map`, `intersperse`,
15+
`sort`, `unique`, and `zip` functions.
1416
- `map_dict:Map` renamed to `map_dict:MapDict`.
1517
- The `map_dict` module gains `drop`, and `take` functions.
1618
- The `str` module gains `append` function and loses `from_int`, `parse_int`,

gleam.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
name = "gleam_experimental_stdlib"
1+
name = "gleam_stdlib"
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
{application,gleam_experimental_stdlib,
1+
{application,gleam_stdlib,
22
[{description,"A standard library for the Gleam programming language"},
3-
{vsn,"0.1.2"},
3+
{vsn,"0.2.0"},
44
{registered,[]},
55
{applications,[kernel,stdlib]},
66
{env,[]},
77
{modules,[]},
8-
{maintainers,[]},
98
{licenses,["Apache 2.0"]},
109
{links,[]},
1110
{include_files,["gleam.toml", "gen"]}]}.

0 commit comments

Comments
 (0)