From 23c59dcae7a437c9b2866f1b98af296e7bb9d576 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Tue, 1 May 2018 12:29:48 -0700 Subject: [PATCH] 0.4.5 --- CHANGES.md | 4 ++++ README.md | 2 +- plugin/src/Config.lua | 2 +- server/Cargo.lock | 2 +- server/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e257a9c2..988ad367 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,10 @@ # Rojo Change Log ## Current Master +*No changes* + +## 0.4.5 (May 1, 2018) +* Rojo messages are now prefixed with `Rojo: ` to make them stand out in the output more. * Fixed server to notice file changes *much* more quickly. (200ms vs 1000ms) * Server now lists name of project when starting up. * Rojo now throws an error if no project file is found. ([#63](https://github.com/LPGhatguy/rojo/issues/63)) diff --git a/README.md b/README.md index 4d5a4c65..7b4365a1 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 8c8aaa5c..55906858 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { pollingRate = 0.2, - version = {0, 4, 4}, + version = {0, 4, 5}, expectedServerVersionString = "0.4.x", protocolVersion = 1, dev = false, diff --git a/server/Cargo.lock b/server/Cargo.lock index 637d3291..32f5b742 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -636,7 +636,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.4.4" +version = "0.4.5" 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 5a7cbc6b..feb5c639 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.4.4" +version = "0.4.5" authors = ["Lucien Greathouse "] description = "A tool to create robust Roblox projects" license = "MIT"