Skip to content

Commit a7876fe

Browse files
committed
v2.0.1
1 parent 005ffcd commit a7876fe

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: test
33
on:
44
push:
55
branches:
6-
- master
76
- main
87
pull_request:
98

@@ -15,7 +14,7 @@ jobs:
1514
- uses: erlef/setup-beam@v1
1615
with:
1716
otp-version: "27"
18-
gleam-version: "1.7.0-rc2"
17+
gleam-version: "1.8.0"
1918
rebar3-version: "3"
2019
- run: gleam test
2120
- run: gleam format --check src test

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3-
## v2.0.1 - 2024-01-08
3+
## v2.0.1 - 2025-02-11
4+
5+
- Updated for latest stdlib.
6+
7+
## v2.0.0 - 2024-01-08
48

59
- Add support for footnotes.
610

gleam.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "jot"
2-
version = "2.0.0"
2+
version = "2.0.1"
33
gleam = ">= 0.39.0"
44
description = "A parser for Djot, a markdown-like language"
55
licences = ["Apache-2.0"]
@@ -10,9 +10,9 @@ links = [
1010
]
1111

1212
[dependencies]
13-
gleam_stdlib = "~> 0.39"
13+
gleam_stdlib = ">= 0.54.0 and < 2.0.0"
1414

1515
[dev-dependencies]
16-
gleeunit = "~> 1.0"
17-
simplifile = "~> 0.3"
16+
gleeunit = ">= 1.0.0 and < 2.0.0"
17+
simplifile = ">= 2.0.0 and < 3.0.0"
1818
filepath = ">= 1.0.0 and < 2.0.0"

manifest.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ packages = [
55
{ name = "filepath", version = "1.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "filepath", source = "hex", outer_checksum = "67A6D15FB39EEB69DD31F8C145BB5A421790581BD6AA14B33D64D5A55DBD6587" },
66
{ name = "gleam_stdlib", version = "0.54.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "723BA61A2BAE8D67406E59DD88CEA1B3C3F266FC8D70F64BE9FEC81B4505B927" },
77
{ name = "gleeunit", version = "1.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "0E6C83834BA65EDCAAF4FE4FB94AC697D9262D83E6F58A750D63C9F6C8A9D9FF" },
8-
{ name = "simplifile", version = "0.4.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "8F3C94B83F691CCFACD784A4D7C1F7E5A0437D93341549B908EE3B32E3477447" },
8+
{ name = "simplifile", version = "2.2.0", build_tools = ["gleam"], requirements = ["filepath", "gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "0DFABEF7DC7A9E2FF4BB27B108034E60C81BEBFCB7AB816B9E7E18ED4503ACD8" },
99
]
1010

1111
[requirements]
1212
filepath = { version = ">= 1.0.0 and < 2.0.0" }
13-
gleam_stdlib = { version = "~> 0.39" }
14-
gleeunit = { version = "~> 1.0" }
15-
simplifile = { version = "~> 0.3" }
13+
gleam_stdlib = { version = ">= 0.54.0 and < 2.0.0" }
14+
gleeunit = { version = ">= 1.0.0 and < 2.0.0" }
15+
simplifile = { version = ">= 2.0.0 and < 3.0.0" }

0 commit comments

Comments
 (0)