diff --git a/CHANGELOG.md b/CHANGELOG.md index 82e7ea27..2dc4fe4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Rojo Changelog ## [Unreleased] + +## [0.5.0 Alpha 8](https://github.com/LPGhatguy/rojo/releases/tag/v0.5.0-alpha.8) (March 29, 2019) * Added support for a bunch of new types when dealing with XML model/place files: * `ColorSequence` * `Float64` diff --git a/Cargo.lock b/Cargo.lock index 6c7440ed..cb75d9cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1218,7 +1218,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.5.0-alpha.6" +version = "0.5.0-alpha.8" dependencies = [ "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", "csv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/docs/installation.md b/docs/installation.md index ea27f3d1..9166a581 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -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.6 +cargo install rojo --version 0.5.0-alpha.8 ``` ## Installing the Plugin diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua index 666418e9..78bdeabf 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { codename = "Epiphany", - version = {0, 5, 0, "-alpha.6"}, + version = {0, 5, 0, "-alpha.8"}, expectedServerVersionString = "0.5.0 or newer", protocolVersion = 2, defaultHost = "localhost", diff --git a/server/Cargo.toml b/server/Cargo.toml index 90ff1dc3..30be6d84 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.5.0-alpha.6" +version = "0.5.0-alpha.8" authors = ["Lucien Greathouse "] description = "A tool to create robust Roblox projects" license = "MIT"