From 69d1accf3f63608be2766c487a517201b8843dfa Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Fri, 1 Feb 2019 17:19:00 -0800 Subject: [PATCH] 0.5.0-alpha.3 --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- plugin/src/Config.lua | 2 +- server/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6618b9c84..c8d4472a1 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 d0f417614..5824f1d5c 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 3f2f03fee..0354e518f 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 df5be7f68..fa96ef5e1 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"