Bump versions

This commit is contained in:
Aode (lion) 2021-09-18 13:00:35 -05:00
parent 751a84c7b3
commit d627c5b6b2
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -1698,7 +1698,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
[[package]]
name = "relay"
version = "0.2.17"
version = "0.3.0"
dependencies = [
"activitystreams",
"activitystreams-ext",

View file

@ -1,7 +1,7 @@
[package]
name = "relay"
description = "A simple activitypub relay"
version = "0.2.17"
version = "0.3.0"
authors = ["asonix <asonix@asonix.dog>"]
license-file = "LICENSE"
readme = "README.md"

View file

@ -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 {

View file

@ -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),