Release 0.6.0-alpha.2

This commit is contained in:
Lucien Greathouse
2020-03-06 13:56:21 -08:00
parent 2e1c37ffff
commit 0187da5f24
4 changed files with 7 additions and 5 deletions

View File

@@ -1,6 +1,8 @@
# Rojo Changelog
## Unreleased Changes for 0.6.x
## [0.6.0 Alpha 2](https://github.com/rojo-rbx/rojo/releases/tag/v0.6.0-alpha.2) (March 6, 2020)
* Fixed `rojo upload` command always uploading models.
* Removed `--kind` parameter to `rojo upload`; Rojo now automatically uploads the correct kind of asset based on your project file.

6
Cargo.lock generated
View File

@@ -195,7 +195,7 @@ dependencies = [
name = "clibrojo"
version = "0.1.0"
dependencies = [
"rojo 0.6.0-alpha.1",
"rojo 0.6.0-alpha.2",
]
[[package]]
@@ -1655,7 +1655,7 @@ dependencies = [
[[package]]
name = "rojo"
version = "0.6.0-alpha.1"
version = "0.6.0-alpha.2"
dependencies = [
"criterion 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-channel 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1713,7 +1713,7 @@ dependencies = [
"paste 0.1.7 (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)",
"rojo 0.6.0-alpha.1",
"rojo 0.6.0-alpha.2",
"rojo-insta-ext 0.1.0",
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@@ -1,6 +1,6 @@
[package]
name = "rojo"
version = "0.6.0-alpha.1"
version = "0.6.0-alpha.2"
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
description = "Enables professional-grade development tools for Roblox developers"
license = "MPL-2.0"

View File

@@ -5,7 +5,7 @@ local isDevBuild = script.Parent.Parent:FindFirstChild("ROJO_DEV_BUILD") ~= nil
return strict("Config", {
isDevBuild = isDevBuild,
codename = "Epiphany",
version = {0, 6, 0, "-alpha.1"},
version = {0, 6, 0, "-alpha.2"},
expectedServerVersionString = "0.6.0 or newer",
protocolVersion = 3,
defaultHost = "localhost",