Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
Update Package@swift-5.5.swift (#278)
Browse files Browse the repository at this point in the history
* Update Package@swift-5.5.swift

Pin SwiftSemantics to main.  This is required since the 0.3.1 release of SwiftSemantics pins SwiftSyntax to 4ae758ab85ed2a5d3e3e8b5050a8ce52179bd102 and SwiftSyntaxHighlighter requires release/5.5.  In order to restore the ability to resolve the dependencies, we need to bump SwiftSemantics to main.

* Update Package@swift-5.5.swift

Use swift-syntax ~> 0.3.2

* Update Package@swift-5.5.swift

Use `revision` instead of `uptToNextMinor` for SwiftSemantics.  Bump SwiftSyntaxHighlighter.  This allows the package dependencies to be resolved on Windows.

Co-authored-by: Mattt <mattt@me.com>
  • Loading branch information
compnerd and mattt committed May 14, 2021
1 parent 9d85789 commit 0625be3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package@swift-5.5.swift
Expand Up @@ -14,13 +14,13 @@ let package = Package(
],
dependencies: [
.package(name: "SwiftSyntax", url: "https://github.com/apple/swift-syntax.git", .revision("release/5.5")),
.package(url: "https://github.com/SwiftDocOrg/SwiftSemantics.git", .upToNextMinor(from: "0.3.0")),
.package(url: "https://github.com/SwiftDocOrg/SwiftSemantics.git", .revision("0.3.2")),
.package(url: "https://github.com/SwiftDocOrg/CommonMark.git", .upToNextMinor(from: "0.5.0")),
.package(url: "https://github.com/SwiftDocOrg/SwiftMarkup.git", .upToNextMinor(from: "0.3.0")),
.package(url: "https://github.com/SwiftDocOrg/GraphViz.git", .upToNextMinor(from: "0.4.1")),
.package(url: "https://github.com/NSHipster/HypertextLiteral.git", .upToNextMinor(from: "0.0.2")),
.package(url: "https://github.com/SwiftDocOrg/Markup.git", .upToNextMinor(from: "0.1.2")),
.package(url: "https://github.com/NSHipster/SwiftSyntaxHighlighter.git", .revision("1.2.2")),
.package(url: "https://github.com/NSHipster/SwiftSyntaxHighlighter.git", .revision("1.2.4")),
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "0.3.2")),
.package(url: "https://github.com/apple/swift-log.git", .upToNextMinor(from: "1.4.2")),
.package(name: "LoggingGitHubActions", url: "https://github.com/NSHipster/swift-log-github-actions.git", .upToNextMinor(from: "0.0.1")),
Expand Down

0 comments on commit 0625be3

Please sign in to comment.