From 459673bd59e0b57c1df080c3e6cc91053ee2b1eb Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Tue, 19 Mar 2019 18:24:30 -0700 Subject: [PATCH] 0.5.0-alpha.6 --- CHANGELOG.md | 7 +++++-- Cargo.lock | 2 +- docs/installation.md | 2 +- plugin/src/Config.lua | 2 +- server/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e201ba49..45fd9b5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,16 @@ # Rojo Changelog ## [Unreleased] -* Fixed `cargo init` giving unexpected results by upgrading to `rbx_dom_weak` 1.1.0 -* Fixed API not responding when the Rojo plugin is connected ([#133](https://github.com/LPGhatguy/rojo/issues/133)) + +## [0.5.0 Alpha 6](https://github.com/LPGhatguy/rojo/releases/tag/v0.5.0-alpha.6) (March 19, 2019) +* Fixed `rojo init` giving unexpected results by upgrading to `rbx_dom_weak` 1.1.0 +* Fixed live server not responding when the Rojo plugin is connected ([#133](https://github.com/LPGhatguy/rojo/issues/133)) * Updated default place file: * Improved default properties to be closer to Studio's built-in 'Baseplate' template * Added a baseplate to the project file (Thanks, [@AmaranthineCodices](https://github.com/AmaranthineCodices/)!) * Added more type support to Rojo plugin * Fixed some cases where the Rojo plugin would leave around objects that it knows should be deleted +* Updated plugin to correctly listen to `Plugin.Unloading` when installing or uninstalling new plugins ## [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 diff --git a/Cargo.lock b/Cargo.lock index 189076f3..12d98bff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1185,7 +1185,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.5.0-alpha.5" +version = "0.5.0-alpha.6" 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 0a87cbd1..ea27f3d1 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.5 +cargo install rojo --version 0.5.0-alpha.6 ``` ## Installing the Plugin diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua index ab777370..666418e9 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { codename = "Epiphany", - version = {0, 5, 0, "-alpha.5"}, + version = {0, 5, 0, "-alpha.6"}, expectedServerVersionString = "0.5.0 or newer", protocolVersion = 2, defaultHost = "localhost", diff --git a/server/Cargo.toml b/server/Cargo.toml index 47b4dccf..e005a52d 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.5.0-alpha.5" +version = "0.5.0-alpha.6" authors = ["Lucien Greathouse "] description = "A tool to create robust Roblox projects" license = "MIT"