diff --git a/CHANGES.md b/CHANGES.md index ab681518..1557d9a7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,10 @@ # Rojo Change Log ## Current Master -* Fixed instances that were reconciled not being inserted into the RouteMap. +*No changes* + +## 0.4.2 (April 4, 2018) +* Fixed final case of duplicated instance insertion, caused by reconciled instances not being inserted into `RouteMap`. * The reconciler is still not a perfect solution, especially if script instances get moved around without being destroyed. I don't think this can be fixed before a big refactor. ## 0.4.1 (April 1, 2018) diff --git a/README.md b/README.md index db3bc360..e22e1cbc 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Travis-CI Build Status - Current server version + Current server version
diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua index b4bfa3be..d7c9466d 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { pollingRate = 0.2, - version = {0, 4, 1}, + version = {0, 4, 2}, expectedServerVersionString = "0.4.x", protocolVersion = 1, dev = false, diff --git a/server/Cargo.toml b/server/Cargo.toml index d6000225..4fa2ba90 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.4.1" +version = "0.4.2" authors = ["Lucien Greathouse "] description = "A tool to create robust Roblox projects" license = "MIT"