From 62bb5a28aa36808fd1f697d2642411e1a4ce97bd Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Fri, 2 Aug 2019 15:05:58 -0700 Subject: [PATCH] v0.5.0-alpha.13 --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- docs/guide/installation.md | 2 +- plugin/src/Config.lua | 2 +- server/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c171198f..0087a89c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Rojo Changelog ## Unreleased Changes + +## [0.5.0 Alpha 13](https://github.com/rojo-rbx/rojo/releases/tag/v0.5.0-alpha.13) (August 2, 2019) +* Bumped minimum Rust version to 1.34.0. * Fixed default port documentation in `rojo serve --help` ([#219](https://github.com/rojo-rbx/rojo/issues/219)) * Fixed BrickColor support by upgrading Roblox-related dependencies diff --git a/Cargo.lock b/Cargo.lock index 7d6d8919..2f230c69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1334,7 +1334,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.5.0-alpha.12" +version = "0.5.0-alpha.13" 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)", diff --git a/docs/guide/installation.md b/docs/guide/installation.md index 3a453475..bae79754 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -29,7 +29,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.12 +cargo install rojo --version 0.5.0-alpha.13 ``` ## Installing the Plugin diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua index c04453d4..66cbbc8e 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { codename = "Epiphany", - version = {0, 5, 0, "-alpha.12"}, + version = {0, 5, 0, "-alpha.13"}, expectedServerVersionString = "0.5.0 or newer", protocolVersion = 2, defaultHost = "localhost", diff --git a/server/Cargo.toml b/server/Cargo.toml index 9ce79e2f..6300ce39 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.5.0-alpha.12" +version = "0.5.0-alpha.13" authors = ["Lucien Greathouse "] description = "Enables professional-grade development tools for Roblox developers" license = "MIT"