diff --git a/CHANGES.md b/CHANGES.md index a6dc4e7e..3d0b504e 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 072399e6..88997cd6 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 04011bd3..5bdf9454 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 24f75fce..cc50d23a 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()