Update SourceKitten to 0.33.1 (#4569)
To make SwiftPM happy about the package being set to a stable release.
This commit is contained in:
parent
cc49e82348
commit
1dbde3d9c3
|
@ -15,8 +15,8 @@
|
|||
"repositoryURL": "https://github.com/jpsim/SourceKitten.git",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "a9e6df65d8e31e0fa6e8a05ffe40ecd54a645871",
|
||||
"version": null
|
||||
"revision": "fc12c0f182c5cf80781dd933b17a82eb98bd7c61",
|
||||
"version": "0.33.1"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -29,7 +29,7 @@ let package = Package(
|
|||
dependencies: [
|
||||
.package(name: "swift-argument-parser", url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "1.1.3")),
|
||||
.package(name: "SwiftSyntax", url: "https://github.com/apple/swift-syntax.git", .revision("a82041008d2c678a97407fbd0ce420d3ab047538")),
|
||||
.package(url: "https://github.com/jpsim/SourceKitten.git", .revision("a9e6df65d8e31e0fa6e8a05ffe40ecd54a645871")),
|
||||
.package(url: "https://github.com/jpsim/SourceKitten.git", .upToNextMinor(from: "0.33.1")),
|
||||
.package(url: "https://github.com/jpsim/Yams.git", from: "5.0.1"),
|
||||
.package(url: "https://github.com/scottrhoyt/SwiftyTextTable.git", from: "0.9.0"),
|
||||
.package(url: "https://github.com/JohnSundell/CollectionConcurrencyKit.git", from: "0.2.0")
|
||||
|
|
|
@ -2,12 +2,11 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|||
|
||||
def swiftlint_repos():
|
||||
"""Fetches SwiftLint repositories"""
|
||||
# https://github.com/jpsim/SourceKitten/pull/749
|
||||
http_archive(
|
||||
name = "com_github_jpsim_sourcekitten",
|
||||
sha256 = "ebce266e1f30d7a96593e7bb884ea702f546ad07d51535c7a1ec91fcd5d2db02",
|
||||
strip_prefix = "SourceKitten-a9e6df65d8e31e0fa6e8a05ffe40ecd54a645871",
|
||||
url = "https://github.com/jpsim/SourceKitten/archive/a9e6df65d8e31e0fa6e8a05ffe40ecd54a645871.tar.gz",
|
||||
sha256 = "bb200a812f46caa58814a655140e5088225925179bf587901ac62a897341d179",
|
||||
strip_prefix = "SourceKitten-0.33.1",
|
||||
url = "https://github.com/jpsim/SourceKitten/archive/refs/tags/0.33.1.tar.gz",
|
||||
)
|
||||
|
||||
http_archive(
|
||||
|
|
Loading…
Reference in New Issue