diff --git a/CHANGELOG.md b/CHANGELOG.md index 84b94068..d6329f32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Rojo Changelog ## Unreleased Changes + +## [7.0.0] - December 10, 2021 * Fixed Rojo's interactions with properties enabled by FFlags that are not yet enabled. ([#493]) * Improved output in Roblox Studio plugin when bad property data is encountered. * Reintroduced support for CFrame shorthand syntax in Rojo project and `.meta.json` files, matching Rojo 6. ([#430]) @@ -10,6 +12,7 @@ [#430]: https://github.com/rojo-rbx/rojo/issues/430 [#493]: https://github.com/rojo-rbx/rojo/pull/493 [#500]: https://github.com/rojo-rbx/rojo/pull/500 +[7.0.0]: https://github.com/rojo-rbx/rojo/releases/tag/v7.0.0 ## [7.0.0-rc.3] - October 19, 2021 This is the last release candidate for Rojo 7. In an effort to get Rojo 7 out the door, we'll be freezing features from here on out, something we should've done a couple months ago. diff --git a/Cargo.lock b/Cargo.lock index afe7a2b8..29a247a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2229,7 +2229,7 @@ dependencies = [ [[package]] name = "rojo" -version = "7.0.0-rc.3" +version = "7.0.0" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index 917ce77c..c76131ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "7.0.0-rc.3" +version = "7.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 cdd9e2a3..02d0b83d 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, "-rc.3"}, + version = {7, 0, 0}, expectedServerVersionString = "7.0 or newer", protocolVersion = 4, defaultHost = "localhost",