diff --git a/CHANGELOG.md b/CHANGELOG.md index aff40072f..852e32b8e 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 75fa762d4..8f3efd19f 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 a7eb79cb5..fe8466ae5 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 5c970cf9e..958396a4b 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 2544b457c..4e77df619 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",