diff --git a/daemon/installing.md b/daemon/installing.md
index fe9d4d58..3243d159 100644
--- a/daemon/installing.md
+++ b/daemon/installing.md
@@ -118,7 +118,7 @@ set when creating the node.
The next step is to download the software and unpack the archive.
``` bash
-curl -L https://github.com/pterodactyl/daemon/releases/download/v0.6.0/daemon.tar.gz | tar --strip-components=1 -xzv
+curl -L https://github.com/pterodactyl/daemon/releases/download/v0.6.1/daemon.tar.gz | tar --strip-components=1 -xzv
```
Finally, we need to install the dependencies that allow the Daemon to run properly. This command will most likely
diff --git a/daemon/upgrade/0.6.md b/daemon/upgrade/0.6.md
new file mode 100644
index 00000000..d4ad4a7e
--- /dev/null
+++ b/daemon/upgrade/0.6.md
@@ -0,0 +1,23 @@
+# Upgrading 0.6 Series
+
+::: tip
+Your servers will not go offline during this process thanks to Docker. Clients will briefly lose connection
+to the Daemon from the Panel, but only during the restart phase.
+:::
+
+## Download Newest Release
+First, ensure you're in the Daemon directory, `/srv/daemon`, before continuing through this process. After you've done
+that, run the command below to pull down the latest files and unpack them in the daemon directory.
+
+``` bash
+curl -L https://github.com/pterodactyl/daemon/releases/download/v0.6.1/daemon.tar.gz | tar --strip-components=1 -xzv
+```
+
+## Update Components
+After you've pulled down the latest files the last thing you need to do is run the commands below to update the
+components and then restart the daemon.
+
+``` bash
+npm update --only=production
+systemctl restart wings
+```
diff --git a/daemon/upgrading.md b/daemon/upgrading.md
index 12873b80..6b9708be 100644
--- a/daemon/upgrading.md
+++ b/daemon/upgrading.md
@@ -3,4 +3,5 @@
## Version Specific Guides
* [0.4.X to 0.5.X](upgrade/0.4_to_0.5.md)
* [0.5.X series](upgrade/0.5.md)
-* [0.5.X to 0.6.x](upgrade/0.5_to_0.6.md)
+* [0.5.X to 0.6.S](upgrade/0.5_to_0.6.md)
+* [0.6.X series](upgrade/0.6.md)