Skip to content

Commit 5c9e07b

Browse files
committed
v0.15.0
1 parent 015d1f7 commit 5c9e07b

File tree

4 files changed

+10
-16
lines changed

4 files changed

+10
-16
lines changed

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# Changelog
22

3-
## Unreleased
3+
## v0.15.0 - 2021-05-05
44

55
- The `list.split_while` function's second argument now has the label
6-
`satisfying` to match the other `_while` functions in `list` and `iterator`.
6+
`satisfying` to match the other `_while` functions in `list` and `iterator`.
77
- The `dynamic` module gains the `tuple3`, `tuple4`, `tuple5`, `tuple6`
88
functions and their typed equivalents `typed_tuple3`, `typed_tuple4`,
99
`typed_tuple5`, `typed_tuple6`.
10-
- The `list` module gains the `combinations`, `combination_pairs`, `drop_while`, `map_fold`, `take_while`, `reduce`,
11-
`chunk`, `sized_chunk`, `last` and `scan` functions.
10+
- The `list` module gains the `combinations`, `combination_pairs`, `drop_while`,
11+
`map_fold`, `take_while`, `reduce`, `chunk`, `sized_chunk`, `last` and `scan`
12+
functions.
1213
- The `iterator` module gains the `index`, `iterate`, `zip`, `scan`, `last`,
1314
`take_while`, `drop_while`, `chunk`, `sized_chunk`, `intersperse`, `interleave`, `reduce`,
1415
`any`, `all`, `empty`, `once` and `single` functions.

README.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ Add `gleam_stdlib` to the deps section of your `rebar.config` or `mix.exs`
1313

1414
```erlang
1515
{deps, [
16-
{gleam_stdlib, "0.14.0"}
16+
{gleam_stdlib, "~> 0.15.0"}
1717
]}
1818
```
1919

2020
```elixir
2121
defp deps do
2222
[
23-
{:gleam_stdlib, "~> 0.14.0"},
23+
{:gleam_stdlib, "~> 0.15.0"},
2424
]
2525
end
2626
```
2727

2828
## Usage
2929

30-
Import the modules you want to use first
30+
Import the modules you want to use and write some code!
3131

3232
```rust
3333
import gleam/string
@@ -41,10 +41,3 @@ fn more_usage() {
4141
contains([1, 2, 3], any: 2)
4242
}
4343
```
44-
45-
## Quick reference
46-
47-
```sh
48-
# Run the unit tests
49-
rebar3 eunit
50-
```

gleam.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "gleam_stdlib"
2-
version = "0.12.0"
2+
version = "0.15.0"
33

44
[repository]
55
type = "github"

src/gleam_stdlib.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application,gleam_stdlib,
22
[{description,"A standard library for the Gleam programming language"},
3-
{vsn,"0.14.0"},
3+
{vsn,"0.15.0"},
44
{registered,[]},
55
{applications,[kernel,stdlib]},
66
{env,[]},

0 commit comments

Comments
 (0)