diff --git a/CHANGES.md b/CHANGES.md index c5eab9f27..34493b28a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,10 @@ # Rojo Change Log ## Current Master +* *No changes* + +## 0.2.3 +* Plugin only release * Tightened `init` file rules to only match script files * Previously, Rojo would sometimes pick up the wrong file when syncing diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua index b3d3bb16e..9e90fd853 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,5 +1,5 @@ return { pollingRate = 0.3, - version = "v0.2.2", + version = "v0.2.3", dev = false, } diff --git a/plugin/src/Main.server.lua b/plugin/src/Main.server.lua index ddfaccdc9..2d393e8da 100644 --- a/plugin/src/Main.server.lua +++ b/plugin/src/Main.server.lua @@ -10,7 +10,7 @@ local function main() local displayedVersion = Config.dev and "DEV" or Config.version - local toolbar = plugin:CreateToolbar("Rojo Plugin v" .. displayedVersion) + local toolbar = plugin:CreateToolbar("Rojo Plugin " .. displayedVersion) toolbar:CreateButton("Test Connection", "Connect to Rojo Server", "") .Click:Connect(function()