diff --git a/CHANGELOG.md b/CHANGELOG.md index 297fcd9ad..2069a998b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Rojo Changelog ## [Unreleased] + +## [0.5.0 Alpha 5](https://github.com/LPGhatguy/rojo/releases/tag/v0.5.0-alpha.5) (March 1, 2019) * Upgraded core dependencies, which improves compatibility for lots of instance types * Upgraded from `rbx_tree` 0.2.0 to `rbx_dom_weak` 1.0.0 * Upgraded from `rbx_xml` 0.2.0 to `rbx_xml` 0.4.0 diff --git a/Cargo.lock b/Cargo.lock index 644d68253..d0b5559f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1182,7 +1182,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.5.0-alpha.4" +version = "0.5.0-alpha.5" 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 e12b22de2..0a87cbd1f 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.4 +cargo install rojo --version 0.5.0-alpha.5 ``` ## Installing the Plugin diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua index 08ed80527..ab777370a 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { codename = "Epiphany", - version = {0, 5, 0, "-alpha.4"}, + version = {0, 5, 0, "-alpha.5"}, expectedServerVersionString = "0.5.0 or newer", protocolVersion = 2, defaultHost = "localhost", diff --git a/server/Cargo.toml b/server/Cargo.toml index 9aa544d13..63edfa00e 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.5.0-alpha.4" +version = "0.5.0-alpha.5" authors = ["Lucien Greathouse "] description = "A tool to create robust Roblox projects" license = "MIT"