Skip to content

Commit

Permalink
release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim committed Mar 30, 2016
1 parent 7412d87 commit c4da1e8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## Master
## 0.12.0

##### Breaking

* None.
* Updated for Xcode 7.3.
[JP Simard](https://github.com/jpsim)

##### Enhancements

Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ SourceKitten links and communicates with `sourcekitd.framework` to parse the Swi

## Installation

Building SourceKitten up to 0.4.5 requires Xcode 6.4.

Building SourceKitten 0.5.0 or later requires Xcode 7.
Building SourceKitten requires Xcode 7.3.

SourceKitten typically supports previous versions of SourceKit.

Expand Down
2 changes: 1 addition & 1 deletion Source/SourceKittenFramework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.11.0</string>
<string>0.12.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 2 additions & 0 deletions Source/SourceKittenFramework/SwiftDeclarationKind.swift
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public enum SwiftDeclarationKind: String {
case FunctionMethodInstance = "source.lang.swift.decl.function.method.instance"
/// `function.method.static`.
case FunctionMethodStatic = "source.lang.swift.decl.function.method.static"
/// `function.operator`.
case FunctionOperator = "source.lang.swift.decl.function.operator"
/// `function.operator.infix`.
case FunctionOperatorInfix = "source.lang.swift.decl.function.operator.infix"
/// `function.operator.postfix`.
Expand Down
2 changes: 1 addition & 1 deletion Source/sourcekitten/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.11.0</string>
<string>0.12.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Source/sourcekitten/VersionCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import Commandant
import Result

private let version = "0.11.0"
private let version = "0.12.0"

struct VersionCommand: CommandType {
let verb = "version"
Expand Down

0 comments on commit c4da1e8

Please sign in to comment.