diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4fe03cb77..206b31713 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,12 +1,15 @@
-## Master
+## 0.8.0
##### Breaking
-* None.
+* Replaced all uses of `XPCDictionary`, `XPCArray`, `XPCRepresentable` &
+ `xpc_object_t` with SourceKit equivalents.
+ [JP Simard](https://github.com/jpsim)
##### Enhancements
-* None.
+* Supports building with Swift 2.2 snapshot & Swift Package Manager on OS X.
+ [JP Simard](https://github.com/jpsim)
##### Bug Fixes
diff --git a/Releasing.md b/Releasing.md
index ffbdb12d0..3fefdf9e9 100644
--- a/Releasing.md
+++ b/Releasing.md
@@ -5,6 +5,7 @@ For SourceKitten contributors, follow these steps to cut a release:
1. Update version number in the following files:
* `Source/sourcekitten/Info.plist`
* `Source/SourceKittenFramework/Info.plist`
+ * `Source/sourcekitten/VersionCommand.swift`
2. Come up with a witty feline themed release name. Past names include:
* Objective-Cat
* Cat-astrophic
diff --git a/Source/SourceKittenFramework/Info.plist b/Source/SourceKittenFramework/Info.plist
index af83867b5..e65ea858f 100644
--- a/Source/SourceKittenFramework/Info.plist
+++ b/Source/SourceKittenFramework/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 0.7.4
+ 0.8.0
CFBundleSignature
????
CFBundleVersion
diff --git a/Source/sourcekitten/Info.plist b/Source/sourcekitten/Info.plist
index 4c7396e6f..65e13429a 100644
--- a/Source/sourcekitten/Info.plist
+++ b/Source/sourcekitten/Info.plist
@@ -17,7 +17,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 0.7.4
+ 0.8.0
CFBundleSignature
????
CFBundleVersion
diff --git a/Source/sourcekitten/VersionCommand.swift b/Source/sourcekitten/VersionCommand.swift
index 2bf336540..d59e4882d 100644
--- a/Source/sourcekitten/VersionCommand.swift
+++ b/Source/sourcekitten/VersionCommand.swift
@@ -9,7 +9,7 @@
import Commandant
import Result
-private let version = "0.7.4"
+private let version = "0.8.0"
struct VersionCommand: CommandType {
let verb = "version"