From b9ed68fa9eca2b348cfe9ae521b6ebe2c61c0d5a Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Thu, 26 May 2022 02:53:20 -0400 Subject: [PATCH] Release v7.1.1 --- CHANGELOG.md | 8 ++++++++ CONTRIBUTING.md | 4 +--- Cargo.lock | 2 +- Cargo.toml | 2 +- plugin/src/Config.lua | 2 +- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aff40072..852e32b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased Changes +## [7.1.1] - May 26, 2022 +* Fixed sourcemap command not stripping paths correctly ([#544]) +* Fixed Studio plugin settings not saving correctly. + +[#544]: https://github.com/rojo-rbx/rojo/pull/544 +[#545]: https://github.com/rojo-rbx/rojo/pull/545 +[7.1.1]: https://github.com/rojo-rbx/rojo/releases/tag/v7.1.1 + ## [7.1.0] - May 22, 2022 * Added support for specifying an address to be used by default in project files. ([#507]) * Added support for optional paths in project files. ([#472]) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 75fa762d..8f3efd19 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -49,11 +49,9 @@ The Rojo release process is pretty manual right now. If you need to do it, here' * `cargo publish` 8. Publish the Plugin * `cargo run -- upload plugin --asset_id 6415005344` - * `cargo run -- build plugin --output Rojo.rbxm` 9. Push commits and tags * `git push && git push --tags` 10. Copy GitHub release content from previous release * Update the leading text with a summary about the release * Paste the changelog notes (as-is!) from [`CHANGELOG.md`](CHANGELOG.md) - * Write a small summary of each major feature - * Attach release artifacts from GitHub Actions for each platform + * Write a small summary of each major feature \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index a7eb79cb..fe8466ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1759,7 +1759,7 @@ dependencies = [ [[package]] name = "rojo" -version = "7.1.0" +version = "7.1.1" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index 5c970cf9..958396a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "7.1.0" +version = "7.1.1" 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 2544b457..4e77df61 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, 0}, + version = {7, 1, 1}, expectedServerVersionString = "7.0 or newer", protocolVersion = 4, defaultHost = "localhost",