From d627c5b6b2c262e76f80a007a274aafb646a7ca0 Mon Sep 17 00:00:00 2001 From: "Aode (lion)" Date: Sat, 18 Sep 2021 13:00:35 -0500 Subject: [PATCH] Bump versions --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/config.rs | 2 +- src/data/state.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7b73382..b8521ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1698,7 +1698,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "relay" -version = "0.2.17" +version = "0.3.0" dependencies = [ "activitystreams", "activitystreams-ext", diff --git a/Cargo.toml b/Cargo.toml index 4491b4f..54fd99f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "relay" description = "A simple activitypub relay" -version = "0.2.17" +version = "0.3.0" authors = ["asonix "] license-file = "LICENSE" readme = "README.md" diff --git a/src/config.rs b/src/config.rs index fe91f43..14751ae 100644 --- a/src/config.rs +++ b/src/config.rs @@ -145,7 +145,7 @@ impl Config { } pub(crate) fn software_version(&self) -> String { - "v0.2.0-main".to_owned() + "v0.3.0-main".to_owned() } pub(crate) fn source_code(&self) -> &Url { diff --git a/src/data/state.rs b/src/data/state.rs index d3c1d5b..e5ed311 100644 --- a/src/data/state.rs +++ b/src/data/state.rs @@ -49,7 +49,7 @@ impl State { self.config.generate_url(UrlKind::MainKey).to_string(), self.private_key.clone(), format!( - "Actix Web 3.0.0-alpha.1 ({}/{}; +{})", + "Actix Web 4.0.0-beta.9 ({}/{}; +{})", self.config.software_name(), self.config.software_version(), self.config.generate_url(UrlKind::Index),