diff --git a/CHANGELOG.md b/CHANGELOG.md index a4fb30626..79a8e4cad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Rojo Changelog ## Unreleased Changes + +## [6.0.0 Release Candidate 3](https://github.com/rojo-rbx/rojo/releases/tag/v6.0.0-rc.3) (November 19, 2020) * Fixed the Rojo plugin attempted to write the non-scriptable properties `Instance.SourceAssetId` and `HttpServer.HttpEnabled`. * Fixed the Rojo plugin's handling of null referents. diff --git a/Cargo.toml b/Cargo.toml index 9b737bdb4..5ac7f359e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "6.0.0-rc.2" +version = "6.0.0-rc.3" authors = ["Lucien Greathouse "] description = "Enables professional-grade development tools for Roblox developers" license = "MPL-2.0" diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua index b33f34ab5..27e6ed9e2 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -5,7 +5,7 @@ local isDevBuild = script.Parent.Parent:FindFirstChild("ROJO_DEV_BUILD") ~= nil return strict("Config", { isDevBuild = isDevBuild, codename = "Epiphany", - version = {6, 0, 0, "-rc.2"}, + version = {6, 0, 0, "-rc.3"}, expectedServerVersionString = "6.0 or newer", protocolVersion = 3, defaultHost = "localhost",