diff options
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | gleam.toml | 4 | ||||
-rw-r--r-- | rebar.config | 10 | ||||
-rw-r--r-- | rebar.lock | 1 | ||||
-rw-r--r-- | src/gleam_stdlib.app.src | 10 |
5 files changed, 4 insertions, 24 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a95628c..499061b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Changelog -## Unreleased +## v0.18.0-rc1 - 2021-11-23 +- Converted to use the Gleam build tool, not rebar3. - The `iterator` module gains the `first` and `at` functions. - The `list` module renames the `head` and `tail` functions to `first` and `rest`. - The `list.at` function now behaves uniformly to `iterator.at`. @@ -1,6 +1,6 @@ name = "gleam_stdlib" -version = "0.17.1" -licence = "Apache-2.0" +version = "0.18.0-rc1" +licences = ["Apache-2.0"] description = "A standard library for the Gleam programming language" repository = { type = "github", user = "gleam-lang", repo = "stdlib" } diff --git a/rebar.config b/rebar.config deleted file mode 100644 index 3f8f69d..0000000 --- a/rebar.config +++ /dev/null @@ -1,10 +0,0 @@ -{erl_opts, [debug_info, warnings_as_errors]}. -{src_dirs, ["src", "gen/src"]}. - -{profiles, [ - {test, [{src_dirs, ["src", "test", "gen/src", "gen/test"]}]} -]}. - -{project_plugins, [rebar_gleam]}. - -{deps, []}. diff --git a/rebar.lock b/rebar.lock deleted file mode 100644 index 57afcca..0000000 --- a/rebar.lock +++ /dev/null @@ -1 +0,0 @@ -[]. diff --git a/src/gleam_stdlib.app.src b/src/gleam_stdlib.app.src deleted file mode 100644 index 93febe8..0000000 --- a/src/gleam_stdlib.app.src +++ /dev/null @@ -1,10 +0,0 @@ -{application,gleam_stdlib, - [{description,"A standard library for the Gleam programming language"}, - {vsn,"0.17.1"}, - {registered,[]}, - {applications,[kernel,stdlib]}, - {env,[]}, - {modules,[]}, - {licenses,["Apache 2.0"]}, - {links, [{"GitHub", "https://github.com/gleam-lang/stdlib"}]}, - {include_files, ["gleam.toml", "package.json", "gen"]}]}. |