Bump to next release candidate

This commit is contained in:
SHAcollision
2025-04-18 10:29:07 +02:00
parent 55d52ec4b8
commit 606ee5feb7
7 changed files with 25 additions and 29 deletions

12
Cargo.lock generated
View File

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

View File

@@ -1,6 +1,6 @@
[package]
name = "http-relay"
version = "0.2.0"
version = "0.3.0-rc.0"
edition = "2021"
authors = ["Nuh <nuh@nuh.dev>"]
description = "A Rust implementation of _some_ of [Http relay spec](https://httprelay.io/)."

View File

@@ -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 <severin@synonym.to>"]
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"

View File

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

View File

@@ -1,6 +1,6 @@
[package]
name = "pubky-common"
version = "0.3.1"
version = "0.4.0-rc.0"
edition = "2021"
authors = ["Nuh <nuh@nuh.dev>"]
description = "Types and struct in common between Pubky client and homeserver"

View File

@@ -1,6 +1,6 @@
[package]
name = "pubky-homeserver"
version = "0.1.2"
version = "0.2.0-rc.0"
edition = "2021"
authors = ["Nuh <nuh@nuh.dev>"]
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"

View File

@@ -1,6 +1,6 @@
[package]
name = "pubky-testnet"
version = "0.1.2"
version = "0.2.0-rc.1"
edition = "2021"
authors = ["Nuh <nuh@nuh.dev>"]
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 }