From 43715143e4e02b56f9d77a77ee75fa31c54367eb Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Mon, 23 Aug 2021 15:50:28 -0400 Subject: [PATCH] Release v7.0.0-rc.1 --- CHANGELOG.md | 12 ++++++++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- plugin/src/Config.lua | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ab94d26..e63577ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Rojo Changelog ## Unreleased Changes + +## [7.0.0-rc.1][7.0.0-rc.1] (August 23, 2021) In Rojo 6 and previous Rojo 7 alphas, an explicit Vector3 property would be written like this: ```json @@ -39,13 +41,19 @@ The shorthand property format that most users use is not impacted. For reference } ``` -* Major breaking change: changed explicit property syntax; shorthand syntax is unchanged. +* Major breaking change: changed property syntax for project files; shorthand syntax is unchanged. * Added the `fmt-project` subcommand for formatting Rojo project files. * Improved error output for many subcommands. * Updated to stable versions of rbx-dom libraries. -* Fixed long path issues on Windows. ([#464][#464]) +* Updated async infrastructure, which should fix a handful of bugs. ([#459][#459]) +* Fixed syncing refs in the Roblox Studio plugin ([#462][#462], [#466][#466]) +* Added support for long paths on Windows. ([#464][#464]) +[#459]: https://github.com/rojo-rbx/rojo/pull/459 +[#462]: https://github.com/rojo-rbx/rojo/pull/462 [#464]: https://github.com/rojo-rbx/rojo/pull/464 +[#466]: https://github.com/rojo-rbx/rojo/pull/466 +[7.0.0-rc.1]: https://github.com/rojo-rbx/rojo/releases/tag/v7.0.0-rc.1 ## [7.0.0-alpha.4][7.0.0-alpha.4] (May 5, 2021) * Added the `gameId` and `placeId` optional properties to project files. diff --git a/Cargo.lock b/Cargo.lock index 9993a34e..9050fe95 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2233,7 +2233,7 @@ dependencies = [ [[package]] name = "rojo" -version = "7.0.0-alpha.4" +version = "7.0.0-rc.1" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index 56db2f75..c552f8b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "7.0.0-alpha.4" +version = "7.0.0-rc.1" 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 4f9649b4..1e613426 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 = {7, 0, 0, "-alpha.4"}, + version = {7, 0, 0, "-rc.1"}, expectedServerVersionString = "7.0 or newer", protocolVersion = 4, defaultHost = "localhost",