diff --git a/CHANGES.md b/CHANGES.md
index 0e6a1c95..38fb155b 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,8 +1,12 @@
# Rojo Change Log
## Current Master
+*No changes*
+
+## 0.4.3 (April 7, 2018)
* Plugin now automatically selects `HttpService` if it determines that HTTP isn't enabled ([#58](https://github.com/LPGhatguy/rojo/pull/58))
* Plugin now has much more robust handling and will wipe all state when the server changes.
+ * This should fix issues that would otherwise be solved by restarting Roblox Studio.
## 0.4.2 (April 4, 2018)
* Fixed final case of duplicated instance insertion, caused by reconciled instances not being inserted into `RouteMap`.
diff --git a/README.md b/README.md
index e22e1cbc..131f632c 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
-
+
diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua
index d7c9466d..9aec7d95 100644
--- a/plugin/src/Config.lua
+++ b/plugin/src/Config.lua
@@ -1,6 +1,6 @@
return {
pollingRate = 0.2,
- version = {0, 4, 2},
+ version = {0, 4, 3},
expectedServerVersionString = "0.4.x",
protocolVersion = 1,
dev = false,
diff --git a/server/Cargo.lock b/server/Cargo.lock
index f84aa23f..f1f7a30d 100644
--- a/server/Cargo.lock
+++ b/server/Cargo.lock
@@ -597,7 +597,7 @@ dependencies = [
[[package]]
name = "rojo"
-version = "0.4.2"
+version = "0.4.3"
dependencies = [
"clap 2.31.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/server/Cargo.toml b/server/Cargo.toml
index 4fa2ba90..e06d2da5 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rojo"
-version = "0.4.2"
+version = "0.4.3"
authors = ["Lucien Greathouse "]
description = "A tool to create robust Roblox projects"
license = "MIT"