From e17771a6a5d1f200e7b84a9288f1e6d679c51f4a Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Sat, 22 Apr 2023 16:07:39 -0400 Subject: [PATCH] Release v7.3.0 --- CHANGELOG.md | 35 ++++++++++++++++++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 4 ++-- 3 files changed, 37 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 566c4af3..deba0561 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,42 @@ # Rojo Changelog ## Unreleased Changes -* Added `--watch` flag to `rojo sourcemap` ([#602]) +## [7.3.0] - April 22, 2023 +* Added `$attributes` to project format. ([#574]) +* Added `--watch` flag to `rojo sourcemap`. ([#602]) +* Added support for `init.csv` files. ([#594]) +* Added real-time sync status to the Studio plugin. ([#569]) +* Added support for copying error messages to the clipboard. ([#614]) +* Added sync locking for Team Create. ([#590]) +* Added support for specifying HTTP or HTTPS protocol in plugin. ([#642]) +* Added tooltips to buttons in the Studio plugin. ([#637]) +* Added visual diffs when connecting from the Studio plugin. ([#603]) +* Host and port are now saved in the Studio plugin. ([#613]) +* Improved padding on notifications in Studio plugin. ([#589]) +* Renamed `Common` to `Shared` in the default Rojo project. ([#611]) +* Reduced the minimum size of the Studio plugin widget. ([#606]) +* Fixed current directory in `rojo fmt-project`. ([#581]) +* Fixed errors after a session has already ended. ([#587]) +* Fixed an uncommon security permission error ([#619]) + +[#569]: https://github.com/rojo-rbx/rojo/pull/569 +[#574]: https://github.com/rojo-rbx/rojo/pull/574 +[#581]: https://github.com/rojo-rbx/rojo/pull/581 +[#587]: https://github.com/rojo-rbx/rojo/pull/587 +[#589]: https://github.com/rojo-rbx/rojo/pull/589 +[#590]: https://github.com/rojo-rbx/rojo/pull/590 +[#594]: https://github.com/rojo-rbx/rojo/pull/594 [#602]: https://github.com/rojo-rbx/rojo/pull/602 +[#603]: https://github.com/rojo-rbx/rojo/pull/603 +[#606]: https://github.com/rojo-rbx/rojo/pull/606 +[#611]: https://github.com/rojo-rbx/rojo/pull/611 +[#613]: https://github.com/rojo-rbx/rojo/pull/613 +[#614]: https://github.com/rojo-rbx/rojo/pull/614 +[#619]: https://github.com/rojo-rbx/rojo/pull/619 +[#637]: https://github.com/rojo-rbx/rojo/pull/637 +[#642]: https://github.com/rojo-rbx/rojo/pull/642 +[7.3.0]: https://github.com/rojo-rbx/rojo/releases/tag/v7.3.0 ## [7.2.1] - July 8, 2022 * Fixed notification sound by changing it to a generic sound. ([#566]) diff --git a/Cargo.lock b/Cargo.lock index 9e6a1830..03c31289 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1878,7 +1878,7 @@ dependencies = [ [[package]] name = "rojo" -version = "7.2.1" +version = "7.3.0" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index afde0996..d9b38bf7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rojo" -version = "7.2.1" -rust-version = "1.58.1" +version = "7.3.0" +rust-version = "1.68.2" authors = ["Lucien Greathouse "] description = "Enables professional-grade development tools for Roblox developers" license = "MPL-2.0"