Skip to content

Commit

Permalink
build: loosen version constraints
Browse files Browse the repository at this point in the history
swift-log-playground is a small library, so I realized that
`.upToNextMinor` was stricter than necessary.
  • Loading branch information
kkebo committed Oct 13, 2023
1 parent 11e5d03 commit cca8a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Expand Up @@ -11,7 +11,7 @@ let package = Package(
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-log.git", .upToNextMinor(from: "1.5.3")),
.package(url: "https://github.com/apple/swift-log.git", from "1.5.3"),
],
targets: [
.target(
Expand Down

0 comments on commit cca8a0c

Please sign in to comment.