Release 6.0.0-rc.3

This commit is contained in:
Lucien Greathouse
2020-11-19 11:47:07 -08:00
parent dcb30351c5
commit a1f7cdc2b6
3 changed files with 4 additions and 2 deletions

View File

@@ -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.

View File

@@ -1,6 +1,6 @@
[package]
name = "rojo"
version = "6.0.0-rc.2"
version = "6.0.0-rc.3"
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
description = "Enables professional-grade development tools for Roblox developers"
license = "MPL-2.0"

View File

@@ -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",