0.5.0-alpha.11

This commit is contained in:
Lucien Greathouse
2019-05-29 14:07:15 -07:00
parent ce3a409997
commit 420627d892
5 changed files with 12 additions and 7 deletions

View File

@@ -1,6 +1,8 @@
# Rojo Changelog
## [Unreleased]
## [0.5.0 Alpha 11](https://github.com/LPGhatguy/rojo/releases/tag/v0.5.0-alpha.11) (May 29, 2019)
* Added support for implicit property values in JSON model files ([#154](https://github.com/LPGhatguy/rojo/pull/154))
* `Content` propertyes can now be specified in projects and model files as regular string literals.
* Added support for `BrickColor` properties.
@@ -11,6 +13,9 @@
* Improved compatibility with XML models
* Plugin should now be able to live-sync more properties, and ignore ones it can't, like `Lighting.Technology`.
## 0.5.0 Alpha 10
* This release was a dud due to [issue #176](https://github.com/LPGhatguy/rojo/issues/176) and was rolled back.
## [0.5.0 Alpha 9](https://github.com/LPGhatguy/rojo/releases/tag/v0.5.0-alpha.9) (April 4, 2019)
* Changed `rojo build` to use buffered I/O, which can make it up to 2x faster in some cases.
* Building [*Road Not Taken*](https://github.com/LPGhatguy/roads) to an `rbxlx` file dropped from 150ms to 70ms on my machine

8
Cargo.lock generated
View File

@@ -1111,7 +1111,7 @@ dependencies = [
[[package]]
name = "rbx_binary"
version = "0.4.0"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1270,7 +1270,7 @@ dependencies = [
[[package]]
name = "rojo"
version = "0.5.0-alpha.10"
version = "0.5.0-alpha.11"
dependencies = [
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"csv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1284,7 +1284,7 @@ dependencies = [
"notify 4.0.12 (registry+https://github.com/rust-lang/crates.io-index)",
"paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rbx_binary 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rbx_binary 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rbx_dom_weak 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rbx_reflection 3.1.384 (registry+https://github.com/rust-lang/crates.io-index)",
"rbx_xml 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1991,7 +1991,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
"checksum rbx_binary 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b147f236284747ac1b4643476265dd36b402877d97adb7cbd0fafc1d247de0a5"
"checksum rbx_binary 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81428c521a07a3feac9c31180a886e467eecf81b769987f70d51d567a09c321d"
"checksum rbx_dom_weak 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e9582ea95ea28d99bea189b90eab04a34ab6e9d04f295ccb46eb997b87754030"
"checksum rbx_reflection 3.1.384 (registry+https://github.com/rust-lang/crates.io-index)" = "1209361806b9238226f1f8427bab9b5171ec13b3bf2dffdd2f97a96bb641164c"
"checksum rbx_xml 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb23d19c983457fa6c65803190a23b2c4b9d08290f3431528adb9b74ab3488da"

View File

@@ -25,7 +25,7 @@ If you have Rust installed, the easiest way to get Rojo is with Cargo!
To install the latest 0.5.0 alpha, use:
```sh
cargo install rojo --version 0.5.0-alpha.9
cargo install rojo --version 0.5.0-alpha.11
```
## Installing the Plugin

View File

@@ -1,6 +1,6 @@
return {
codename = "Epiphany",
version = {0, 5, 0, "-alpha.10"},
version = {0, 5, 0, "-alpha.11"},
expectedServerVersionString = "0.5.0 or newer",
protocolVersion = 2,
defaultHost = "localhost",

View File

@@ -1,6 +1,6 @@
[package]
name = "rojo"
version = "0.5.0-alpha.10"
version = "0.5.0-alpha.11"
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
description = "A tool to create robust Roblox projects"
license = "MIT"