mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 12:45:05 +00:00
Release 6.2.0
This commit is contained in:
@@ -1,11 +1,14 @@
|
|||||||
# Rojo Changelog
|
# Rojo Changelog
|
||||||
|
|
||||||
## Unreleased Changes
|
## Unreleased Changes
|
||||||
|
|
||||||
|
## [6.2.0][6.2.0] (June 10, 2021)
|
||||||
* Added "EXPERIMENTAL!" label to two-way sync toggle in Rojo's Roblox Studio plugin.
|
* Added "EXPERIMENTAL!" label to two-way sync toggle in Rojo's Roblox Studio plugin.
|
||||||
* Fixed "Open Scripts Externally" feature crashing Studio ([#369][issue-369])
|
* Fixed "Open Scripts Externally" feature crashing Studio ([#369][issue-369])
|
||||||
* Updated dependencies, fixing `HumanoidDescription` ID issues.
|
* Updated dependencies, fixing `HumanoidDescription` ID issues.
|
||||||
|
|
||||||
[issue-369]: https://github.com/rojo-rbx/rojo/issues/369
|
[issue-369]: https://github.com/rojo-rbx/rojo/issues/369
|
||||||
|
[6.2.0]: https://github.com/rojo-rbx/rojo/releases/tag/v6.2.0
|
||||||
|
|
||||||
## [6.1.0][6.1.0] (April 12, 2021)
|
## [6.1.0][6.1.0] (April 12, 2021)
|
||||||
* Updated dependencies, fixing OptionalCoordinateFrame-related issues.
|
* Updated dependencies, fixing OptionalCoordinateFrame-related issues.
|
||||||
|
|||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -1943,7 +1943,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rojo"
|
name = "rojo"
|
||||||
version = "6.1.0"
|
version = "6.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"backtrace",
|
"backtrace",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rojo"
|
name = "rojo"
|
||||||
version = "6.1.0"
|
version = "6.2.0"
|
||||||
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
|
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
|
||||||
description = "Enables professional-grade development tools for Roblox developers"
|
description = "Enables professional-grade development tools for Roblox developers"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ local isDevBuild = script.Parent.Parent:FindFirstChild("ROJO_DEV_BUILD") ~= nil
|
|||||||
return strict("Config", {
|
return strict("Config", {
|
||||||
isDevBuild = isDevBuild,
|
isDevBuild = isDevBuild,
|
||||||
codename = "Epiphany",
|
codename = "Epiphany",
|
||||||
version = {6, 1, 0},
|
version = {6, 2, 0},
|
||||||
expectedServerVersionString = "6.0 or newer",
|
expectedServerVersionString = "6.0 or newer",
|
||||||
protocolVersion = 3,
|
protocolVersion = 3,
|
||||||
defaultHost = "localhost",
|
defaultHost = "localhost",
|
||||||
|
|||||||
Reference in New Issue
Block a user