Skip to content

Commit 12c124e

Browse files
committed
πŸ”– Version 1.0.5
1 parent 4724383 commit 12c124e

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## v1.0.5 - 2025-04-03
11+
12+
### Fixed
13+
14+
- Update to use new decoder API. ([#7](https://github.com/MystPi/pprint/pull/7))
15+
1016
## v1.0.4 - 2024-10-25
1117

1218
### Fixed

β€Žgleam.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "pprint"
2-
version = "1.0.4"
2+
version = "1.0.5"
33
description = "Pretty print values with style!"
44
licences = ["Apache-2.0"]
55
repository = { type = "github", user = "MystPi", repo = "pprint" }

β€Žmanifest.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ packages = [
2626
[requirements]
2727
birdie = { version = "~> 1.0" }
2828
glam = { version = "~> 2.0" }
29-
gleam_stdlib = { version = "~> 0.34 or ~> 1.0" }
29+
gleam_stdlib = { version = ">= 0.50.0 and < 2.0.0" }
3030
gleeunit = { version = "~> 1.0" }

β€Žsrc/pprint/decoder.gleamβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub fn classify(value: Dynamic) -> Type {
3434

3535
/// This decoder will always return `Ok`, as it ends with a catch-all
3636
/// pattern returning a `TForeign`.
37-
///
37+
///
3838
fn type_decoder() -> decode.Decoder(Type) {
3939
use <- decode.recursive
4040
decode.one_of(decode.map(decode.int, TInt), [

0 commit comments

Comments
Β (0)