Release v7.2.0

This commit is contained in:
Lucien Greathouse
2022-06-29 20:34:06 -04:00
parent 58098e96d4
commit 0987b44e23
4 changed files with 7 additions and 3 deletions

View File

@@ -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])

2
Cargo.lock generated
View File

@@ -1858,7 +1858,7 @@ dependencies = [
[[package]]
name = "rojo"
version = "7.1.1"
version = "7.2.0"
dependencies = [
"anyhow",
"backtrace",

View File

@@ -1,6 +1,7 @@
[package]
name = "rojo"
version = "7.1.1"
version = "7.2.0"
rust-version = "1.57.0"
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 = {7, 1, 1},
version = {7, 2, 0},
expectedServerVersionString = "7.0 or newer",
protocolVersion = 4,
defaultHost = "localhost",