Skip to content

Commit

Permalink
Update TOMLKit and KeyedList style (#17)
Browse files Browse the repository at this point in the history
* Update TOMLKit version for improved Codable error messages

* Remove bold style from KeyedListEntry keys
  • Loading branch information
stackotter authored Apr 2, 2022
1 parent f3668af commit 2a33a85
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
"repositoryURL": "https://github.com/LebJe/TOMLKit",
"state": {
"branch": null,
"revision": "7e9120d439ca994d4deb27afb4ff1f4d760c93ce",
"version": "0.5.1"
"revision": "d0d44fda394acdd43ded1face20f80a0c5195e04",
"version": "0.5.2"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var dependencies: [Package.Dependency] = [
.package(url: "https://github.com/stackotter/swift-argument-parser", branch: "main"),
.package(url: "https://github.com/apple/swift-log", from: "1.4.2"),
.package(url: "https://github.com/pointfreeco/swift-parsing.git", from: "0.7.1"),
.package(url: "https://github.com/LebJe/TOMLKit", from: "0.5.1"),
.package(url: "https://github.com/LebJe/TOMLKit", from: "0.5.2"),
.package(url: "https://github.com/onevcat/Rainbow", .upToNextMajor(from: "4.0.0")),
.package(url: "https://github.com/mxcl/Version.git", from: "2.0.0")
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ struct KeyedList: OutputComponent {
var value: String

var body: String {
"* " + key.bold + ": " + value
"* " + key + ": " + value
}

/// Creates a keyed list entry.
Expand Down

0 comments on commit 2a33a85

Please sign in to comment.