Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:

jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -17,6 +18,9 @@ jobs:
otp-version: "28"
gleam-version: "1.14.0"
rebar3-version: "3"
# elixir-version: "1.15.4"
- run: gleam test
- uses: actions/setup-node@v4
with:
node-version: 20
- run: gleam test --target erlang
- run: gleam test --target javascript
- run: gleam format --check src test
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

- Added parsing of TOML documents to `Dynamic`.

## v2.0.2 - 2026-03-26

- Fixed a bug where multi-line strings containing `#` could parse incorrectly.
Expand Down
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ links = [
]

[dependencies]
gleam_stdlib = ">= 0.33.0 and < 3.0.0"
gleam_stdlib = ">= 0.53.0 and < 3.0.0"
gleam_time = ">= 1.2.0 and < 2.0.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ packages = [
]

[requirements]
gleam_stdlib = { version = ">= 0.33.0 and < 3.0.0" }
gleam_stdlib = { version = ">= 0.53.0 and < 3.0.0" }
gleam_time = { version = ">= 1.2.0 and < 2.0.0" }
gleeunit = { version = "~> 1.0" }
Loading
Loading