From e482aba030aa1661bc3bd0d80dab85df6fca2fcf Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Fri, 8 Jul 2022 20:22:16 -0400 Subject: [PATCH] Release v7.2.1 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- plugin/src/Config.lua | 4 ++-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0084b2e1..21bee906 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased Changes +## [7.2.1] - July 8, 2022 +* Fixed notification sound by changing it to a generic sound. ([#566]) +* Added setting to turn off sound effects. ([#568]) + +[#566]: https://github.com/rojo-rbx/rojo/pull/566 +[#568]: https://github.com/rojo-rbx/rojo/pull/568 +[7.2.0]: https://github.com/rojo-rbx/rojo/releases/tag/v7.2.0 + ## [7.2.0] - June 29, 2022 * Added support for `.luau` files. ([#552]) * Added support for live syncing Attributes and Tags. ([#553]) diff --git a/Cargo.lock b/Cargo.lock index be02c842..5bed38c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1858,7 +1858,7 @@ dependencies = [ [[package]] name = "rojo" -version = "7.2.0" +version = "7.2.1" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index 4834506a..008501d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "7.2.0" +version = "7.2.1" rust-version = "1.57.0" authors = ["Lucien Greathouse "] description = "Enables professional-grade development tools for Roblox developers" diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua index be288916..3b85c3ee 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -5,8 +5,8 @@ local isDevBuild = script.Parent.Parent:FindFirstChild("ROJO_DEV_BUILD") ~= nil return strict("Config", { isDevBuild = isDevBuild, codename = "Epiphany", - version = {7, 2, 0}, - expectedServerVersionString = "7.0 or newer", + version = {7, 2, 1}, + expectedServerVersionString = "7.2 or newer", protocolVersion = 4, defaultHost = "localhost", defaultPort = 34872,