From a2f14d2d37866c3ee7580cd9f5ff99dcb8ab3664 Mon Sep 17 00:00:00 2001 From: Paul Makles <paulmakles@gmail.com> Date: Tue, 16 Feb 2021 15:26:31 +0000 Subject: [PATCH] Bump version. --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/routes/root.rs | 2 +- src/util/variables.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f264925..4324f79 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2454,7 +2454,7 @@ dependencies = [ [[package]] name = "revolt" -version = "0.3.3-alpha.4" +version = "0.3.3-alpha.5" dependencies = [ "async-std", "async-tungstenite", diff --git a/Cargo.toml b/Cargo.toml index 98bfdd2..a3511eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "revolt" -version = "0.3.3-alpha.4" +version = "0.3.3-alpha.5" authors = ["Paul Makles <paulmakles@gmail.com>"] edition = "2018" diff --git a/src/routes/root.rs b/src/routes/root.rs index 9242caf..b1cc49e 100644 --- a/src/routes/root.rs +++ b/src/routes/root.rs @@ -8,7 +8,7 @@ use rocket_contrib::json::JsonValue; #[get("/")] pub async fn root() -> JsonValue { json!({ - "revolt": "0.3.3-alpha.4", + "revolt": "0.3.3-alpha.5", "features": { "registration": !*DISABLE_REGISTRATION, "captcha": { diff --git a/src/util/variables.rs b/src/util/variables.rs index 17a5084..7c07ade 100644 --- a/src/util/variables.rs +++ b/src/util/variables.rs @@ -8,7 +8,7 @@ lazy_static! { pub static ref MONGO_URI: String = env::var("REVOLT_MONGO_URI").expect("Missing REVOLT_MONGO_URI environment variable."); pub static ref WS_HOST: String = - env::var("REVOLT_WS_HOST").unwrap_or_else(|_| "0.0.0.0:9000".to_string()); + env::var("REVOLT_WS_HOST").unwrap_or_else(|_| "0.0.0.0:9000".to_string()); pub static ref PUBLIC_URL: String = env::var("REVOLT_PUBLIC_URL").expect("Missing REVOLT_PUBLIC_URL environment variable."); pub static ref APP_URL: String = -- GitLab