+3
-5
.github/workflows/test.yml
+3
-5
.github/workflows/test.yml
···
10
10
test:
11
11
runs-on: ubuntu-latest
12
12
steps:
13
-
- uses: actions/checkout@v3
13
+
- uses: actions/checkout@v4
14
14
- uses: erlef/setup-beam@v1.16
15
15
with:
16
16
otp-version: '25'
17
-
gleam-version: '0.31'
17
+
gleam-version: '0.32'
18
18
rebar3-version: '3'
19
-
# elixir-version: "1.14.2"
20
-
- run: gleam format --check src test
21
-
- run: gleam deps download
22
19
- run: gleam test
20
+
- run: gleam format --check src test
+4
-4
gleam.toml
+4
-4
gleam.toml
···
1
1
name = "birl"
2
-
version = "0.17.0"
2
+
version = "0.18.0"
3
3
4
-
description = "Date / Time handling for gleam"
4
+
description = "Date / Time handling for Gleam"
5
5
licences = ["Apache-2.0"]
6
-
links = [{title = "gleam", href = "https://gleam.run"}]
6
+
links = [{title = "Gleam", href = "https://gleam.run"}]
7
7
repository = {type = "github", user = "massivefermion", repo = "birl"}
8
8
9
9
gleam = ">= 0.32.0"
···
13
13
14
14
[dependencies]
15
15
gleam_stdlib = "~> 0.32"
16
-
ranger = "~> 0.5"
16
+
ranger = "~> 1.0"
17
17
18
18
[dev-dependencies]
19
19
gleeunit = "~> 1.0"
+3
-3
manifest.toml
+3
-3
manifest.toml
···
2
2
# You typically do not need to edit this file
3
3
4
4
packages = [
5
-
{ name = "gleam_stdlib", version = "0.32.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "07D64C26D014CF570F8ACADCE602761EA2E74C842D26F2FD49B0D61973D9966F" },
5
+
{ name = "gleam_stdlib", version = "0.32.1", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "ABF00CDCCB66FABBCE351A50060964C4ACE798F95A0D78622C8A7DC838792577" },
6
6
{ name = "gleeunit", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D3682ED8C5F9CAE1C928F2506DE91625588CC752495988CBE0F5653A42A6F334" },
7
-
{ name = "ranger", version = "0.5.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "ranger", source = "hex", outer_checksum = "653A15D0C73E75AD4EC6DE40478F0EBBA1157D0F5BB16FDD454D0C1129C32D41" },
7
+
{ name = "ranger", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "ranger", source = "hex", outer_checksum = "F405D2BE4D6A381F68983DAA750EF1A97410BFF822B93C058B6072CFE840B35D" },
8
8
]
9
9
10
10
[requirements]
11
11
gleam_stdlib = { version = "~> 0.32" }
12
12
gleeunit = { version = "~> 1.0" }
13
-
ranger = { version = "~> 0.5" }
13
+
ranger = { version = "~> 1.0" }