diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d958eef3..0084b2e1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Rojo Changelog ## Unreleased Changes + +## [7.2.0] - June 29, 2022 * Added support for `.luau` files. ([#552]) * Added support for live syncing Attributes and Tags. ([#553]) * Added notification popups in the Roblox Studio plugin. ([#540]) @@ -21,6 +23,7 @@ [#561]: https://github.com/rojo-rbx/rojo/pull/561 [#563]: https://github.com/rojo-rbx/rojo/pull/563 [#564]: https://github.com/rojo-rbx/rojo/pull/564 +[7.2.0]: https://github.com/rojo-rbx/rojo/releases/tag/v7.2.0 ## [7.1.1] - May 26, 2022 * Fixed sourcemap command not stripping paths correctly ([#544]) diff --git a/Cargo.lock b/Cargo.lock index 22b557a0a..be02c8427 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1858,7 +1858,7 @@ dependencies = [ [[package]] name = "rojo" -version = "7.1.1" +version = "7.2.0" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index 34bfe1e52..4834506ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "rojo" -version = "7.1.1" +version = "7.2.0" +rust-version = "1.57.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 4e77df619..be2889169 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, 1, 1}, + version = {7, 2, 0}, expectedServerVersionString = "7.0 or newer", protocolVersion = 4, defaultHost = "localhost",