From ab7d0f68d93aa3e279dd6b315cc5b793bfbc8f06 Mon Sep 17 00:00:00 2001 From: Igor Katson Date: Fri, 1 Dec 2023 11:59:36 +0000 Subject: [PATCH] Re-tag 4.0.0-beta.2 as apparently beta.1 was already tagged and released before --- Cargo.lock | 6 +++--- crates/dht/Cargo.toml | 2 +- crates/librqbit/Cargo.toml | 4 ++-- crates/rqbit/Cargo.toml | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 89ab14fa..654fed16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1189,7 +1189,7 @@ dependencies = [ [[package]] name = "librqbit" -version = "4.0.0-beta.1" +version = "4.0.0-beta.2" dependencies = [ "anyhow", "axum 0.7.1", @@ -1275,7 +1275,7 @@ dependencies = [ [[package]] name = "librqbit-dht" -version = "4.0.0-beta.1" +version = "4.0.0-beta.2" dependencies = [ "anyhow", "backoff", @@ -1900,7 +1900,7 @@ dependencies = [ [[package]] name = "rqbit" -version = "4.0.0-beta.1" +version = "4.0.0-beta.2" dependencies = [ "anyhow", "clap", diff --git a/crates/dht/Cargo.toml b/crates/dht/Cargo.toml index 9d8f3b44..151f3780 100644 --- a/crates/dht/Cargo.toml +++ b/crates/dht/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librqbit-dht" -version = "4.0.0-beta.1" +version = "4.0.0-beta.2" edition = "2021" description = "DHT implementation, used in rqbit torrent client." license = "Apache-2.0" diff --git a/crates/librqbit/Cargo.toml b/crates/librqbit/Cargo.toml index 0a3ef43e..8d44d573 100644 --- a/crates/librqbit/Cargo.toml +++ b/crates/librqbit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librqbit" -version = "4.0.0-beta.1" +version = "4.0.0-beta.2" authors = ["Igor Katson "] edition = "2021" description = "The main library used by rqbit torrent client. The binary is just a small wrapper on top of it." @@ -28,7 +28,7 @@ librqbit-core = {path = "../librqbit_core", version = "3.1.0"} clone_to_owned = {path = "../clone_to_owned", package="librqbit-clone-to-owned", version = "2.2.1"} peer_binary_protocol = {path = "../peer_binary_protocol", package="librqbit-peer-protocol", version = "3.1.0"} sha1w = {path = "../sha1w", default-features=false, package="librqbit-sha1-wrapper", version="2.2.1"} -dht = {path = "../dht", package="librqbit-dht", version="4.0.0-beta.1"} +dht = {path = "../dht", package="librqbit-dht", version="4.0.0-beta.2"} tokio = {version = "1", features = ["macros", "rt-multi-thread"]} axum = {version = "0.7"} diff --git a/crates/rqbit/Cargo.toml b/crates/rqbit/Cargo.toml index 02511d16..1279072b 100644 --- a/crates/rqbit/Cargo.toml +++ b/crates/rqbit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rqbit" -version = "4.0.0-beta.1" +version = "4.0.0-beta.2" authors = ["Igor Katson "] edition = "2021" description = "A bittorrent command line client and server." @@ -23,8 +23,8 @@ default-tls = ["librqbit/default-tls"] rust-tls = ["librqbit/rust-tls"] [dependencies] -librqbit = {path="../librqbit", default-features=false, version = "4.0.0-beta.1"} -dht = {path="../dht", package="librqbit-dht", version="4.0.0-beta.1"} +librqbit = {path="../librqbit", default-features=false, version = "4.0.0-beta.2"} +dht = {path="../dht", package="librqbit-dht", version="4.0.0-beta.2"} tokio = {version = "1", features = ["macros", "rt-multi-thread"]} console-subscriber = {version = "0.2", optional = true} anyhow = "1"