diff --git a/CHANGES.md b/CHANGES.md index d380067e..0815139e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,9 @@ # Rojo Change Log ## Current master +* *No changes* + +## 0.4.12 (June 21, 2018) * Fixed obscure assertion failure when renaming or deleting files ([#78](https://github.com/LPGhatguy/rojo/issues/78)) * Added a `PluginAction` for the sync in command, which should help with some automation scripts ([#80](https://github.com/LPGhatguy/rojo/pull/80)) diff --git a/README.md b/README.md index 78d94c87..b40aa6db 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Travis-CI Build Status - Current server version + Current server version Rojo Documentation diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua index c8f2ed91..b1e45ac7 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { pollingRate = 0.2, - version = {0, 4, 11}, + version = {0, 4, 12}, expectedServerVersionString = "0.4.x", protocolVersion = 1, icons = { diff --git a/server/Cargo.lock b/server/Cargo.lock index a3b0fe3e..cfc3241e 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -636,7 +636,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.4.11" +version = "0.4.12" 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 f44419ea..5f5ff6fd 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.4.11" +version = "0.4.12" authors = ["Lucien Greathouse "] description = "A tool to create robust Roblox projects" license = "MIT"