From 1a78e9178a9588de80f3d76bb7870981e18dc6a9 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Tue, 15 Oct 2019 18:16:21 -0700 Subject: [PATCH] Release 0.5.3 --- CHANGELOG.md | 2 ++ Cargo.lock | 4 ++-- plugin/src/Config.lua | 2 +- server/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f875888f..bcee62499 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Rojo Changelog ## Unreleased Changes + +## [0.5.3](https://github.com/rojo-rbx/rojo/releases/tag/v0.5.3) (October 15, 2019) * Fixed an issue where Rojo would throw an error when encountering recently-added instance classes. ## [0.5.2](https://github.com/rojo-rbx/rojo/releases/tag/v0.5.2) (October 14, 2019) diff --git a/Cargo.lock b/Cargo.lock index a9a192a89..1db2349ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1480,7 +1480,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.5.2" +version = "0.5.3" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "csv 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1515,7 +1515,7 @@ version = "0.1.0" dependencies = [ "insta 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rojo 0.5.2", + "rojo 0.5.3", "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua index 9107f4042..ec318c510 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { codename = "Epiphany", - version = {0, 5, 2}, + version = {0, 5, 3}, expectedServerVersionString = "0.5.0 or newer", protocolVersion = 2, defaultHost = "localhost", diff --git a/server/Cargo.toml b/server/Cargo.toml index 533e2c974..b78ddd1b2 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.5.2" +version = "0.5.3" authors = ["Lucien Greathouse "] description = "Enables professional-grade development tools for Roblox developers" license = "MIT"