From f3483ee2e0f64e47d3b5c513c0bdf50dc098b429 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Fri, 1 Dec 2017 02:02:39 -0800 Subject: [PATCH] 0.2.0 --- CHANGES.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- plugin/src/Main.server.lua | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a6dc4e7e9..3d0b504e2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,5 +3,9 @@ ## Current Master * *No changes* +## 0.2.0 +* Support for `init.lua` like rbxfs and rbxpacker +* More robust syncing with a new reconciler + ## 0.1.0 * Initial release, functionally very similar to [rbxfs](https://github.com/LPGhatguy/rbxfs) \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 072399e64..88997cd69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "rojo" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap 2.28.0 (registry+https://github.com/rust-lang/crates.io-index)", "notify 4.0.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 04011bd3d..5bdf94547 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.1.0" +version = "0.2.0" authors = ["Lucien Greathouse "] description = "A tool to create robust Roblox projects" license = "MIT" diff --git a/plugin/src/Main.server.lua b/plugin/src/Main.server.lua index 24f75fceb..cc50d23a5 100644 --- a/plugin/src/Main.server.lua +++ b/plugin/src/Main.server.lua @@ -7,7 +7,7 @@ local Plugin = require(script.Parent.Plugin) local function main() local pluginInstance = Plugin.new() - local toolbar = plugin:CreateToolbar("Rojo Plugin 0.1.0") + local toolbar = plugin:CreateToolbar("Rojo Plugin 0.2.0") toolbar:CreateButton("Test Connection", "Connect to Rojo Server", "") .Click:Connect(function()