This commit is contained in:
Lucien Greathouse
2018-04-07 22:58:39 -07:00
parent 1f5a686570
commit 73c6b5a08c
5 changed files with 7 additions and 4 deletions

View File

@@ -3,6 +3,9 @@
## Current Master
*No changes*
## 0.4.4 (April 7, 2018)
* Fix small regression introduced in 0.4.3
## 0.4.3 (April 7, 2018)
* Plugin now automatically selects `HttpService` if it determines that HTTP isn't enabled ([#58](https://github.com/LPGhatguy/rojo/pull/58))
* Plugin now has much more robust handling and will wipe all state when the server changes.

View File

@@ -8,7 +8,7 @@
<a href="https://travis-ci.org/LPGhatguy/rojo">
<img src="https://api.travis-ci.org/LPGhatguy/rojo.svg?branch=master" alt="Travis-CI Build Status" />
</a>
<img src="https://img.shields.io/badge/latest_version-0.4.3-brightgreen.svg" alt="Current server version" />
<img src="https://img.shields.io/badge/latest_version-0.4.4-brightgreen.svg" alt="Current server version" />
</div>
<hr />

View File

@@ -1,6 +1,6 @@
return {
pollingRate = 0.2,
version = {0, 4, 3},
version = {0, 4, 4},
expectedServerVersionString = "0.4.x",
protocolVersion = 1,
dev = false,

2
server/Cargo.lock generated
View File

@@ -597,7 +597,7 @@ dependencies = [
[[package]]
name = "rojo"
version = "0.4.3"
version = "0.4.4"
dependencies = [
"clap 2.31.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@@ -1,6 +1,6 @@
[package]
name = "rojo"
version = "0.4.3"
version = "0.4.4"
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
description = "A tool to create robust Roblox projects"
license = "MIT"