diff --git a/CHANGELOG.md b/CHANGELOG.md index fd126a97..3ddc95d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,14 @@ # Rojo Changelog ## Unreleased Changes + +## [6.2.0][6.2.0] (June 10, 2021) * Added "EXPERIMENTAL!" label to two-way sync toggle in Rojo's Roblox Studio plugin. * Fixed "Open Scripts Externally" feature crashing Studio ([#369][issue-369]) * Updated dependencies, fixing `HumanoidDescription` ID issues. [issue-369]: https://github.com/rojo-rbx/rojo/issues/369 +[6.2.0]: https://github.com/rojo-rbx/rojo/releases/tag/v6.2.0 ## [6.1.0][6.1.0] (April 12, 2021) * Updated dependencies, fixing OptionalCoordinateFrame-related issues. diff --git a/Cargo.lock b/Cargo.lock index de196abb..c113895d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1943,7 +1943,7 @@ dependencies = [ [[package]] name = "rojo" -version = "6.1.0" +version = "6.2.0" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index d28d74f6..ae1ae9e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "6.1.0" +version = "6.2.0" 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 3c9f2605..23f96f5f 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, 1, 0}, + version = {6, 2, 0}, expectedServerVersionString = "6.0 or newer", protocolVersion = 3, defaultHost = "localhost",