aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md3
-rw-r--r--gleam.toml4
-rw-r--r--rebar.config10
-rw-r--r--rebar.lock1
-rw-r--r--src/gleam_stdlib.app.src10
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`.
diff --git a/gleam.toml b/gleam.toml
index 53f043f..766bbff 100644
--- a/gleam.toml
+++ b/gleam.toml
@@ -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"]}]}.