forked from rojo-rbx/rojo
Release v0.6.0-alpha.1
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
# Rojo Changelog
|
# Rojo Changelog
|
||||||
|
|
||||||
## Unreleased Changes (will be 0.6.0)
|
## Unreleased Changes
|
||||||
|
|
||||||
|
## [0.6.0 Alpha 1](https://github.com/rojo-rbx/rojo/releases/tag/v0.6.0-alpha.1) (January 22, 2020)
|
||||||
|
|
||||||
### General
|
### General
|
||||||
* Added support for nested project files. ([#95](https://github.com/rojo-rbx/rojo/issues/95))
|
* Added support for nested project files. ([#95](https://github.com/rojo-rbx/rojo/issues/95))
|
||||||
@@ -8,6 +10,7 @@
|
|||||||
* Fixed Rojo dropping Ref properties ([#142](https://github.com/rojo-rbx/rojo/issues/142))
|
* Fixed Rojo dropping Ref properties ([#142](https://github.com/rojo-rbx/rojo/issues/142))
|
||||||
* This means that properties like `PrimaryPart` now work!
|
* This means that properties like `PrimaryPart` now work!
|
||||||
* Improved live sync protocol to reduce round-trips and improve syncing consistency.
|
* Improved live sync protocol to reduce round-trips and improve syncing consistency.
|
||||||
|
* Improved support for binary model files and places.
|
||||||
|
|
||||||
### Command Line
|
### Command Line
|
||||||
* Added `--verbose`/`-v` flag, which can be specified multiple times to increase verbosity.
|
* Added `--verbose`/`-v` flag, which can be specified multiple times to increase verbosity.
|
||||||
|
|||||||
6
Cargo.lock
generated
6
Cargo.lock
generated
@@ -184,7 +184,7 @@ dependencies = [
|
|||||||
name = "clibrojo"
|
name = "clibrojo"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rojo 0.6.0-dev",
|
"rojo 0.6.0-alpha.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -1657,7 +1657,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rojo"
|
name = "rojo"
|
||||||
version = "0.6.0-dev"
|
version = "0.6.0-alpha.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"criterion 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"criterion 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
@@ -1715,7 +1715,7 @@ dependencies = [
|
|||||||
"paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"rbx_dom_weak 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"rbx_dom_weak 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"reqwest 0.9.24 (registry+https://github.com/rust-lang/crates.io-index)",
|
"reqwest 0.9.24 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"rojo 0.6.0-dev",
|
"rojo 0.6.0-alpha.1",
|
||||||
"rojo-insta-ext 0.1.0",
|
"rojo-insta-ext 0.1.0",
|
||||||
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rojo"
|
name = "rojo"
|
||||||
version = "0.6.0-dev"
|
version = "0.6.0-alpha.1"
|
||||||
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 = {0, 6, 0, "-dev"},
|
version = {0, 6, 0, "-alpha.1"},
|
||||||
expectedServerVersionString = "0.6.0 or newer",
|
expectedServerVersionString = "0.6.0 or newer",
|
||||||
protocolVersion = 3,
|
protocolVersion = 3,
|
||||||
defaultHost = "localhost",
|
defaultHost = "localhost",
|
||||||
|
|||||||
Reference in New Issue
Block a user