Skip to content

Commit

Permalink
update SourceKitten to 0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim committed Jan 10, 2017
1 parent 27563e7 commit 7999973
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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.16.0
github "jpsim/SourceKitten" ~> 0.17.0
github "scottrhoyt/SwiftyTextTable" ~> 0.5.0
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ github "behrang/YamlSwift" "3.3.1"
github "jpsim/Yams" "0.1.4"
github "jspahrsummers/xcconfigs" "2055f18efbe18e77408f7f43947f7ad92b2d4ff0"
github "Carthage/Commandant" "0.11.3"
github "jpsim/SourceKitten" "0.16.0"
github "jpsim/SourceKitten" "0.17.0"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/SourceKitten
Submodule SourceKitten updated 39 files
+29 −0 .swiftlint.yml
+3 −1 .travis.yml
+16 −0 CHANGELOG.md
+5 −5 CONTRIBUTING.md
+1 −1 Makefile
+23 −7 Source/SourceKittenFramework/Clang+SourceKitten.swift
+11 −13 Source/SourceKittenFramework/ClangTranslationUnit.swift
+24 −10 Source/SourceKittenFramework/File.swift
+1 −1 Source/SourceKittenFramework/Info.plist
+3 −3 Source/SourceKittenFramework/JSONOutput.swift
+6 −5 Source/SourceKittenFramework/Module.swift
+1 −0 Source/SourceKittenFramework/ObjCDeclarationKind.swift
+54 −47 Source/SourceKittenFramework/Request.swift
+3 −3 Source/SourceKittenFramework/SourceDeclaration.swift
+1 −1 Source/SourceKittenFramework/StatementKind.swift
+8 −3 Source/SourceKittenFramework/String+SourceKitten.swift
+2 −2 Source/SourceKittenFramework/Text.swift
+1 −1 Source/SourceKittenFramework/library_wrapper.swift
+6 −6 Source/sourcekitten/CompleteCommand.swift
+11 −6 Source/sourcekitten/DocCommand.swift
+5 −5 Source/sourcekitten/FormatCommand.swift
+4 −3 Source/sourcekitten/IndexCommand.swift
+1 −1 Source/sourcekitten/Info.plist
+3 −3 Source/sourcekitten/StructureCommand.swift
+3 −3 Source/sourcekitten/SyntaxCommand.swift
+2 −2 Source/sourcekitten/YamlRequestCommand.swift
+1 −0 Source/sourcekitten/main.swift
+2 −3 Tests/LinuxMain.swift
+1 −1 Tests/SourceKittenFrameworkTests/CodeCompletionTests.swift
+1 −1 Tests/SourceKittenFrameworkTests/DocInfoTests.swift
+1 −1 Tests/SourceKittenFrameworkTests/FileTests.swift
+6 −3 Tests/SourceKittenFrameworkTests/ModuleTests.swift
+4 −2 Tests/SourceKittenFrameworkTests/OffsetMapTests.swift
+10 −5 Tests/SourceKittenFrameworkTests/SourceKitTests.swift
+5 −3 Tests/SourceKittenFrameworkTests/StringTests.swift
+1 −1 Tests/SourceKittenFrameworkTests/StructureTests.swift
+5 −2 Tests/SourceKittenFrameworkTests/SwiftDocsTests.swift
+1 −1 Tests/SourceKittenFrameworkTests/SyntaxTests.swift
+15 −0 sourcekitten.xcodeproj/project.pbxproj
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let package = Package(
]),
],
dependencies: [
.Package(url: "https://github.com/jpsim/SourceKitten.git", majorVersion: 0, minor: 16),
.Package(url: "https://github.com/jpsim/SourceKitten.git", majorVersion: 0, minor: 17),
.Package(url: "https://github.com/behrang/YamlSwift.git", majorVersion: 3),
.Package(url: "https://github.com/scottrhoyt/SwiftyTextTable.git", majorVersion: 0, minor: 5),
]
Expand Down

0 comments on commit 7999973

Please sign in to comment.