Skip to content

Commit

Permalink
bump dependencies and gleam version
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomocavalieri committed Jan 3, 2024
1 parent b0604ee commit 922e7df
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: erlef/[email protected]
with:
otp-version: "26.0.2"
gleam-version: "0.32"
gleam-version: "0.33"
rebar3-version: "3"
- run: gleam format --check src test
- run: gleam deps download
Expand Down
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog

## Unreleased
## v1.3.0 - 2023-01-03

- Update to Gleam `v0.32`
- Bump `stdlib` dependency from `0.30` to `0.31`
- Update to Gleam `v0.33`
- Bump `stdlib` dependency from `0.30` to `0.33`
- Bump `gleeunit` dependency from `0.10` to `1.0`

## v1.2.0 - 2023-09-23

Expand Down
8 changes: 4 additions & 4 deletions gleam.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name = "glam"
version = "1.2.0"
version = "1.3.0"
description = "A package to help you easily pretty print structured data"

licences = ["Apache-2.0"]
repository = { type = "github", user = "giacomocavalieri", repo = "glam" }
internal_modules = ["examples", "examples/*"]
gleam = ">= 0.32.0"
gleam = ">= 0.33.0"

[dependencies]
gleam_stdlib = "~> 0.31"
gleam_stdlib = "~> 0.33"

[dev-dependencies]
gleeunit = "~> 0.10"
gleeunit = "~> 1.0"

[documentation]
pages = [
Expand Down
8 changes: 4 additions & 4 deletions manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# You typically do not need to edit this file

packages = [
{ name = "gleam_stdlib", version = "0.32.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "07D64C26D014CF570F8ACADCE602761EA2E74C842D26F2FD49B0D61973D9966F" },
{ name = "gleeunit", version = "0.11.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "1397E5C4AC4108769EE979939AC39BF7870659C5AFB714630DEEEE16B8272AD5" },
{ name = "gleam_stdlib", version = "0.34.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "1FB8454D2991E9B4C0C804544D8A9AD0F6184725E20D63C3155F0AEB4230B016" },
{ name = "gleeunit", version = "1.0.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D364C87AFEB26BDB4FB8A5ABDE67D635DC9FA52D6AB68416044C35B096C6882D" },
]

[requirements]
gleam_stdlib = { version = "~> 0.31" }
gleeunit = { version = "~> 0.10" }
gleam_stdlib = { version = "~> 0.33" }
gleeunit = { version = "~> 1.0" }

0 comments on commit 922e7df

Please sign in to comment.