diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a24429e6..02c2b78db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Rojo Changelog ## Unreleased Changes for 0.6.x + +## [0.6.0 Alpha 3](https://github.com/rojo-rbx/rojo/releases/tag/v0.6.0-alpha.3) (March 13, 2020) * Added `--watch` argument to `rojo build`. ([#284](https://github.com/rojo-rbx/rojo/pull/284)) * Added dark theme support to plugin. ([#241](https://github.com/rojo-rbx/rojo/issues/241)) * Added a revamped `rojo init` command, which will now create more complete projects. diff --git a/Cargo.lock b/Cargo.lock index e1d9dd820..fbae337ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -195,7 +195,7 @@ dependencies = [ name = "clibrojo" version = "0.1.0" dependencies = [ - "rojo 0.6.0-alpha.2", + "rojo 0.6.0-alpha.3", ] [[package]] @@ -1659,7 +1659,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.6.0-alpha.2" +version = "0.6.0-alpha.3" dependencies = [ "backtrace 0.3.45 (registry+https://github.com/rust-lang/crates.io-index)", "criterion 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1720,7 +1720,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.2", + "rojo 0.6.0-alpha.3", "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)", diff --git a/Cargo.toml b/Cargo.toml index 5e1fd971a..501e3b8bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.6.0-alpha.2" +version = "0.6.0-alpha.3" 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 0c4418336..7dc4d4e09 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 = {0, 6, 0, "-alpha.2"}, + version = {0, 6, 0, "-alpha.3"}, expectedServerVersionString = "0.6.0 or newer", protocolVersion = 3, defaultHost = "localhost",