diff --git a/CHANGELOG.md b/CHANGELOG.md index d855885c..49fd719b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Rojo Changelog ## [Unreleased] + +## [0.5.0 Alpha 4](https://github.com/LPGhatguy/rojo/releases/tag/v0.5.0-alpha.4) (February 8, 2019) * Added support for nested partitions ([#102](https://github.com/LPGhatguy/rojo/issues/102)) * Added support for 'transmuting' partitions ([#112](https://github.com/LPGhatguy/rojo/issues/112)) * Added support for aliasing filesystem paths ([#105](https://github.com/LPGhatguy/rojo/issues/105)) diff --git a/Cargo.lock b/Cargo.lock index 027834be..ce0a6905 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1292,7 +1292,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.5.0-alpha.3" +version = "0.5.0-alpha.4" 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/plugin/src/Config.lua b/plugin/src/Config.lua index 0354e518..08ed8052 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { codename = "Epiphany", - version = {0, 5, 0, "-alpha.3"}, + version = {0, 5, 0, "-alpha.4"}, expectedServerVersionString = "0.5.0 or newer", protocolVersion = 2, defaultHost = "localhost", diff --git a/server/Cargo.toml b/server/Cargo.toml index 0e878811..09a63a18 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.5.0-alpha.3" +version = "0.5.0-alpha.4" authors = ["Lucien Greathouse "] description = "A tool to create robust Roblox projects" license = "MIT"