Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Nov 23, 2021
1 parent 5ae69f1 commit 08ca6c4
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 38 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ gen
log
logs
rebar3.crashdump
build
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.2.0 - 2021-11-23

- Converted from rebar3 to the Gleam build tool.

## v0.1.0 - 2021-09-11

- Initial release
15 changes: 13 additions & 2 deletions gleam.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
name = "gleam_erlang"

[docs]
version = "0.2.0"
licences = ["Apache-2.0"]
description = "A standard library for the Gleam programming language"

repository = { type = "github", user = "gleam-lang", repo = "erlang" }
links = [
{ title = 'GitHub', href = 'https://github.com/gleam-lang/erlang' }
{ title = "Website", href = "https://gleam.run" },
{ title = "Sponsor", href = "https://github.com/sponsors/lpil" },
]

[dependencies]
gleam_stdlib = "~> 0.18"

[dev-dependencies]
gleeunit = "~> 0.1"
11 changes: 11 additions & 0 deletions manifest.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This file was generated by Gleam
# You typically do not need to edit this file

packages = [
{ name = "gleam_stdlib", version = "0.18.0-rc1", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "8EFAE8452107DBBC4290F7CB1B82668EB884E197909AB6B714DCB75481D632C9" },
{ name = "gleeunit", version = "0.4.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "E8FDD4E31E0BBB87F625B0BB4DEABDE780180F1C2B15A4534442823066468638" },
]

[requirements]
gleam_stdlib = "~> 0.18.0-rc1"
gleeunit = "~> 0.1"
12 changes: 0 additions & 12 deletions rebar.config

This file was deleted.

8 changes: 0 additions & 8 deletions rebar.lock

This file was deleted.

16 changes: 0 additions & 16 deletions src/gleam_erlang.app.src

This file was deleted.

5 changes: 5 additions & 0 deletions test/gleam_erlang_test.gleam
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import gleeunit

pub fn main() {
gleeunit.main()
}

0 comments on commit 08ca6c4

Please sign in to comment.