diff --git a/CHANGELOG.md b/CHANGELOG.md index 6618b9c8..c8d4472a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Rojo Changelog ## [Unreleased] + +## [0.5.0 Alpha 3](https://github.com/LPGhatguy/rojo/releases/tag/v0.5.0-alpha.3) (February 1, 2019) * Changed default project file name from `roblox-project.json` to `default.project.json` ([#120](https://github.com/LPGhatguy/rojo/pull/120)) * The old file name will still be supported until 0.5.0 is fully released. * Added warning when loading project files that don't end in `.project.json` diff --git a/Cargo.lock b/Cargo.lock index d0f41761..5824f1d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1248,7 +1248,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.5.0-alpha.2" +version = "0.5.0-alpha.3" 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 3f2f03fe..0354e518 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { codename = "Epiphany", - version = {0, 5, 0, "-alpha.2"}, + version = {0, 5, 0, "-alpha.3"}, expectedServerVersionString = "0.5.0 or newer", protocolVersion = 2, defaultHost = "localhost", diff --git a/server/Cargo.toml b/server/Cargo.toml index df5be7f6..fa96ef5e 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.5.0-alpha.2" +version = "0.5.0-alpha.3" authors = ["Lucien Greathouse "] description = "A tool to create robust Roblox projects" license = "MIT"