From 606ee5feb7bcb897de6b56a4cb4bab2740fde4cf Mon Sep 17 00:00:00 2001 From: SHAcollision Date: Fri, 18 Apr 2025 10:29:07 +0200 Subject: [PATCH] Bump to next release candidate --- Cargo.lock | 12 ++++++------ http-relay/Cargo.toml | 2 +- pkarr-republisher/Cargo.toml | 9 ++++----- pubky-client/Cargo.toml | 4 ++-- pubky-common/Cargo.toml | 2 +- pubky-homeserver/Cargo.toml | 9 ++++----- pubky-testnet/Cargo.toml | 16 +++++++--------- 7 files changed, 25 insertions(+), 29 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5a29a1e..26d502d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1343,7 +1343,7 @@ dependencies = [ [[package]] name = "http-relay" -version = "0.2.0" +version = "0.3.0-rc.0" dependencies = [ "anyhow", "axum", @@ -2163,7 +2163,7 @@ dependencies = [ [[package]] name = "pkarr-republisher" -version = "0.1.0" +version = "0.2.0-rc.0" dependencies = [ "anyhow", "clap", @@ -2266,7 +2266,7 @@ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" [[package]] name = "pubky" -version = "0.4.2" +version = "0.4.3-rc.0" dependencies = [ "anyhow", "base64 0.22.1", @@ -2299,7 +2299,7 @@ dependencies = [ [[package]] name = "pubky-common" -version = "0.3.1" +version = "0.4.0-rc.0" dependencies = [ "argon2", "base32", @@ -2318,7 +2318,7 @@ dependencies = [ [[package]] name = "pubky-homeserver" -version = "0.1.2" +version = "0.2.0-rc.0" dependencies = [ "anyhow", "axum", @@ -2358,7 +2358,7 @@ dependencies = [ [[package]] name = "pubky-testnet" -version = "0.1.2" +version = "0.2.0-rc.1" dependencies = [ "anyhow", "http-relay", diff --git a/http-relay/Cargo.toml b/http-relay/Cargo.toml index 5a431b7..d90c613 100644 --- a/http-relay/Cargo.toml +++ b/http-relay/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "http-relay" -version = "0.2.0" +version = "0.3.0-rc.0" edition = "2021" authors = ["Nuh "] description = "A Rust implementation of _some_ of [Http relay spec](https://httprelay.io/)." diff --git a/pkarr-republisher/Cargo.toml b/pkarr-republisher/Cargo.toml index 9ad4749..dde6222 100644 --- a/pkarr-republisher/Cargo.toml +++ b/pkarr-republisher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pkarr-republisher" -version = "0.1.0" +version = "0.2.0-rc.0" edition = "2021" authors = ["Severin Alex Bühler "] description = "A pkarr packet republisher." @@ -12,16 +12,15 @@ categories = ["web-programming"] [dependencies] anyhow = "1.0.95" -pkarr = {workspace = true} +pkarr = { workspace = true } tokio = { version = "1.43.0", features = ["full"] } tracing = "0.1.41" -futures-lite = { version = "2.6.0"} +futures-lite = { version = "2.6.0" } thiserror = "2.0.12" # bin dependencies -clap = { version = "4.4", features = ["derive"] } +clap = { version = "4.4", features = ["derive"] } tracing-subscriber = { version = "0.3.19", features = ["env-filter"] } ctrlc = "3.4.5" hex = "0.4.3" rand = "0.9.0" - diff --git a/pubky-client/Cargo.toml b/pubky-client/Cargo.toml index 9d4ae0b..cf15624 100644 --- a/pubky-client/Cargo.toml +++ b/pubky-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pubky" -version = "0.4.2" +version = "0.4.3-rc.0" edition = "2021" description = "Pubky core client" license = "MIT" @@ -17,7 +17,7 @@ categories = [ crate-type = ["cdylib", "rlib"] [dependencies] -pubky-common = { version = "0.3.1", path = "../pubky-common" } +pubky-common = { version = "0.4.0-rc.0", path = "../pubky-common" } thiserror = "2.0.11" wasm-bindgen = "0.2.100" url = "2.5.4" diff --git a/pubky-common/Cargo.toml b/pubky-common/Cargo.toml index f57435d..b2f426a 100644 --- a/pubky-common/Cargo.toml +++ b/pubky-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pubky-common" -version = "0.3.1" +version = "0.4.0-rc.0" edition = "2021" authors = ["Nuh "] description = "Types and struct in common between Pubky client and homeserver" diff --git a/pubky-homeserver/Cargo.toml b/pubky-homeserver/Cargo.toml index 8d1a20b..03b375e 100644 --- a/pubky-homeserver/Cargo.toml +++ b/pubky-homeserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pubky-homeserver" -version = "0.1.2" +version = "0.2.0-rc.0" edition = "2021" authors = ["Nuh "] description = "Pubky core's homeserver." @@ -32,7 +32,7 @@ hex = "0.4.3" httpdate = "1.0.3" postcard = { version = "1.1.1", features = ["alloc"] } pkarr = { workspace = true, features = ["dht", "lmdb-cache", "tls"] } -pubky-common = { version = "0.3.1", path = "../pubky-common" } +pubky-common = { version = "0.4.0-rc.0", path = "../pubky-common" } serde = { version = "1.0.217", features = ["derive"] } tokio = { version = "1.43.0", features = ["full"] } toml = "0.8.20" @@ -44,16 +44,15 @@ url = { version = "2.5.4", features = ["serde"] } axum-server = { version = "0.7.1", features = ["tls-rustls-no-provider"] } tower = "0.5.2" page_size = "0.6.0" -pkarr-republisher = { version = "0.1.0", path = "../pkarr-republisher" } +pkarr-republisher = { version = "0.2.0-rc.0", path = "../pkarr-republisher" } thiserror = "2.0.12" dirs = "6.0.0" hostname-validator = "1.1.1" axum-test = "17.2.0" -tempfile = { version = "3.10.1"} +tempfile = { version = "3.10.1" } dyn-clone = "1.0.19" reqwest = "0.12.15" [dev-dependencies] futures-lite = "2.6.0" - diff --git a/pubky-testnet/Cargo.toml b/pubky-testnet/Cargo.toml index bb01767..62e0612 100644 --- a/pubky-testnet/Cargo.toml +++ b/pubky-testnet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pubky-testnet" -version = "0.1.2" +version = "0.2.0-rc.1" edition = "2021" authors = ["Nuh "] description = "A local test network for Pubky Core development." @@ -17,13 +17,11 @@ tokio = { version = "1.43.0", features = ["full"] } tracing-subscriber = "0.3.19" url = "2.5.4" -pubky = { version = "0.4.2", path = "../pubky-client" } -pubky-common = { version = "0.3.1", path = "../pubky-common" } -pubky-homeserver = { version = "0.1.2", path = "../pubky-homeserver"} -http-relay = { version = "0.2.0", path = "../http-relay"} +pubky = { version = "0.4.3-rc.0", path = "../pubky-client" } +pubky-common = { version = "0.4.0-rc.0", path = "../pubky-common" } +pubky-homeserver = { version = "0.2.0-rc.0", path = "../pubky-homeserver" } +http-relay = { version = "0.3.0-rc.0", path = "../http-relay" } tempfile = "3.19.1" tracing = "0.1.41" -pkarr = {workspace = true} -mainline = {workspace = true} - - +pkarr = { workspace = true } +mainline = { workspace = true }