From 27af0c841bb5f14b889a4e8a386dfef4943fc475 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Sat, 16 Jan 2021 18:35:27 -0700 Subject: [PATCH] Release 6.0.0 --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- plugin/src/Config.lua | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8853f79e..59b8b038 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased Changes +## [6.0.0](https://github.com/rojo-rbx/rojo/releases/tag/v6.0.0) (January 16, 2021) +* Improved server error messages + * The server will now keep running in more error cases +* Fixed Rojo being unable to diff ClassName changes + ## [6.0.0 Release Candidate 4](https://github.com/rojo-rbx/rojo/releases/tag/v6.0.0-rc.4) (December 14, 2020) * Added brand new Rojo UI ([#367](https://github.com/rojo-rbx/rojo/pull/367)) * Added `projectName` to `/api/rojo` output. diff --git a/Cargo.lock b/Cargo.lock index d8712b16..d763496d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1961,7 +1961,7 @@ dependencies = [ [[package]] name = "rojo" -version = "6.0.0-rc.4" +version = "6.0.0" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index 75f12da1..3ec448f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "6.0.0-rc.4" +version = "6.0.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 18d5d2a3..f12eec2e 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.4"}, + version = {6, 0, 0}, expectedServerVersionString = "6.0 or newer", protocolVersion = 3, defaultHost = "localhost",