Skip to content

Commit

Permalink
Update SourceKitten to 0.24 (#2819)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim authored Jul 22, 2019
1 parent fdb067d commit e2d325c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@

#### Bug Fixes

* None.
* Release memory created for sourcekitd requests.
[Colton Schlosser](https://github.com/cltnschlosser)
[#2812](https://github.com/realm/SwiftLint/issues/2812)

## 0.34.0: Anti-Static Wool Dryer Balls

Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "jpsim/SourceKitten" ~> 0.23.2
github "jpsim/SourceKitten" ~> 0.24.0
github "scottrhoyt/SwiftyTextTable" ~> 0.9.0
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github "Carthage/Commandant" "0.16.0"
github "antitypical/Result" "4.1.0"
github "drmohundro/SWXMLHash" "4.8.0"
github "jpsim/SourceKitten" "0.23.2"
github "jpsim/SourceKitten" "0.24.0"
github "jpsim/Yams" "2.0.0"
github "jspahrsummers/xcconfigs" "0.12"
github "scottrhoyt/SwiftyTextTable" "0.9.0"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/SourceKitten
Submodule SourceKitten updated 28 files
+38 −0 CHANGELOG.md
+1 −1 Gemfile
+8 −8 Gemfile.lock
+1 −1 README.md
+31 −0 Source/SourceKittenFramework/CursorInfo+Parsing.swift
+1 −1 Source/SourceKittenFramework/Info.plist
+2 −2 Source/SourceKittenFramework/Module.swift
+14 −3 Source/SourceKittenFramework/Request.swift
+68 −48 Source/SourceKittenFramework/SourceKitObject.swift
+0 −11 Source/SourceKittenFramework/SwiftDocKey.swift
+3 −9 Source/SourceKittenFramework/UID.swift
+23 −0 Source/SourceKittenFramework/UIDRepresentable.swift
+1 −1 Source/SourceKittenFramework/Version.swift
+0 −4 Source/SourceKittenFramework/XcodeBuildSetting.swift
+60 −66 Source/SourceKittenFramework/library_wrapper.swift
+1 −0 Source/SourceKittenFramework/library_wrapper_CXString.swift
+1 −0 Source/SourceKittenFramework/library_wrapper_Documentation.swift
+1 −0 Source/SourceKittenFramework/library_wrapper_Index.swift
+1 −0 Source/SourceKittenFramework/library_wrapper_sourcekitd.swift
+1 −1 Source/sourcekitten/Info.plist
+1 −1 SourceKittenFramework.podspec
+1 −0 Tests/LinuxMain.swift
+53 −0 Tests/SourceKittenFrameworkTests/CursorInfoParsingTests.swift
+37 −0 Tests/SourceKittenFrameworkTests/CursorInfoUSRTests.swift
+13 −0 Tests/SourceKittenFrameworkTests/Fixtures/CursorInfoUSR@swift-4.2.json
+13 −0 Tests/SourceKittenFrameworkTests/Fixtures/CursorInfoUSR@swift-5.0.json
+1 −1 Tests/SourceKittenFrameworkTests/ModuleTests.swift
+16 −0 sourcekitten.xcodeproj/project.pbxproj
8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/Quick/Nimble.git",
"state": {
"branch": null,
"revision": "43304bf2b1579fd555f2fdd51742771c1e4f2b98",
"version": "8.0.1"
"revision": "f8657642dfdec9973efc79cc68bcef43a653a2bc",
"version": "8.0.2"
}
},
{
Expand All @@ -42,8 +42,8 @@
"repositoryURL": "https://github.com/jpsim/SourceKitten.git",
"state": {
"branch": null,
"revision": "fd9091759201473aa234c22322a3939615aef59a",
"version": "0.23.2"
"revision": "35c9e0e437592661a51b160d80a4feaa5d4630d1",
"version": "0.24.0"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/Carthage/Commandant.git", .upToNextMinor(from: "0.16.0")),
.package(url: "https://github.com/jpsim/SourceKitten.git", from: "0.23.2"),
.package(url: "https://github.com/jpsim/SourceKitten.git", from: "0.24.0"),
.package(url: "https://github.com/jpsim/Yams.git", from: "2.0.0"),
.package(url: "https://github.com/scottrhoyt/SwiftyTextTable.git", from: "0.9.0"),
] + (addCryptoSwift ? [.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.0.0")] : []),
Expand Down
2 changes: 1 addition & 1 deletion SwiftLintFramework.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ Pod::Spec.new do |s|
s.source_files = 'Source/SwiftLintFramework/**/*.swift'
s.swift_versions = ['4.2', '5.0']
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
s.dependency 'SourceKittenFramework', '~> 0.23'
s.dependency 'SourceKittenFramework', '~> 0.24'
s.dependency 'Yams', '~> 2.0'
end

0 comments on commit e2d325c

Please sign in to comment.