From 73c6b5a08cee2a68e7386f6437d2fff0cf1d33fa Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Sat, 7 Apr 2018 22:58:39 -0700 Subject: [PATCH] 0.4.4 --- CHANGES.md | 3 +++ README.md | 2 +- plugin/src/Config.lua | 2 +- server/Cargo.lock | 2 +- server/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 38fb155b..86606407 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,9 @@ ## Current Master *No changes* +## 0.4.4 (April 7, 2018) +* Fix small regression introduced in 0.4.3 + ## 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. diff --git a/README.md b/README.md index 131f632c..de72a54c 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 9aec7d95..8c8aaa5c 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { pollingRate = 0.2, - version = {0, 4, 3}, + version = {0, 4, 4}, expectedServerVersionString = "0.4.x", protocolVersion = 1, dev = false, diff --git a/server/Cargo.lock b/server/Cargo.lock index f1f7a30d..bed68bc1 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -597,7 +597,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.4.3" +version = "0.4.4" 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 e06d2da5..1d0a0255 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.4.3" +version = "0.4.4" authors = ["Lucien Greathouse "] description = "A tool to create robust Roblox projects" license = "MIT"