diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ec7791c6..f20e37f78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ # Rojo Changelog ## Unreleased Changes + +## [6.1.0][6.1.0] (April 12, 2021) * Updated dependencies, fixing OptionalCoordinateFrame-related issues. * Added `--address` flag to `rojo serve` to allow for external connections. ([#403][pr-403]) [pr-403]: https://github.com/rojo-rbx/rojo/pull/403 +[6.1.0]: https://github.com/rojo-rbx/rojo/releases/tag/v6.1.0 ## [6.0.2](https://github.com/rojo-rbx/rojo/releases/tag/v6.0.2) (February 9, 2021) * Fixed `rojo upload` to handle CSRF challenges. diff --git a/Cargo.lock b/Cargo.lock index 32e894711..2c0d6f7c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1991,7 +1991,7 @@ dependencies = [ [[package]] name = "rojo" -version = "6.0.2" +version = "6.1.0" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index fb1eeafc2..d28d74f65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "6.0.2" +version = "6.1.0" 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 e681dca8d..3c9f26050 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 = {6, 0, 2}, + version = {6, 1, 0}, expectedServerVersionString = "6.0 or newer", protocolVersion = 3, defaultHost = "localhost",