From a2b1f20216a5d7592fba6781822bc4890b7289fa Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 1 Feb 2023 10:42:58 -0500 Subject: [PATCH] Bump minor version of tor-cell. In !948 we renamed a couple of accessor functions, which is a breaking change in `tor-cell`'s API. In retrospect, perhaps we should have deprecated the old names and added the new ones, so we wouldn't have to break the API. (This is the only API break AFAICT since 1.1.0.) --- Cargo.lock | 2 +- crates/arti-client/Cargo.toml | 2 +- crates/tor-cell/Cargo.toml | 2 +- crates/tor-chanmgr/Cargo.toml | 4 ++-- crates/tor-proto/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2935b16d8..022a58dd1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3598,7 +3598,7 @@ dependencies = [ [[package]] name = "tor-cell" -version = "0.7.0" +version = "0.8.0" dependencies = [ "arrayref", "bitflags", diff --git a/crates/arti-client/Cargo.toml b/crates/arti-client/Cargo.toml index 075856037..a1a49d2c5 100644 --- a/crates/arti-client/Cargo.toml +++ b/crates/arti-client/Cargo.toml @@ -86,7 +86,7 @@ safelog = { path = "../safelog", version = "0.2.1" } serde = { version = "1.0.103", features = ["derive"] } thiserror = "1" tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } -tor-cell = { path = "../tor-cell", version = "0.7.0" } +tor-cell = { path = "../tor-cell", version = "0.8.0" } tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.1" } tor-checkable = { path = "../tor-checkable", version = "0.4.0" } tor-circmgr = { path = "../tor-circmgr", version = "0.7.1" } diff --git a/crates/tor-cell/Cargo.toml b/crates/tor-cell/Cargo.toml index 8723b411a..be4e9aedb 100644 --- a/crates/tor-cell/Cargo.toml +++ b/crates/tor-cell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-cell" -version = "0.7.0" +version = "0.8.0" authors = ["The Tor Project, Inc.", "Nick Mathewson "] edition = "2021" rust-version = "1.60" diff --git a/crates/tor-chanmgr/Cargo.toml b/crates/tor-chanmgr/Cargo.toml index 28c1ca8ee..6e6e89fe6 100644 --- a/crates/tor-chanmgr/Cargo.toml +++ b/crates/tor-chanmgr/Cargo.toml @@ -32,7 +32,7 @@ safelog = { path = "../safelog", version = "0.2.1" } serde = { version = "1.0.103", features = ["derive"] } thiserror = "1" tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } -tor-cell = { path = "../tor-cell", version = "0.7.0" } +tor-cell = { path = "../tor-cell", version = "0.8.0" } tor-config = { path = "../tor-config", version = "0.7.1" } tor-error = { path = "../tor-error", version = "0.4.1" } tor-linkspec = { path = "../tor-linkspec", version = "0.6.0" } @@ -52,7 +52,7 @@ float_eq = "1.0.0" futures-await-test = "0.3.0" hex-literal = "0.3" itertools = "0.10.1" -tor-cell = { path = "../tor-cell", version = "0.7.0", features = ["testing"] } +tor-cell = { path = "../tor-cell", version = "0.8.0", features = ["testing"] } tor-netdir = { path = "../tor-netdir", version = "0.7.1", features = ["testing"] } tor-proto = { path = "../tor-proto", version = "0.8.1", features = ["testing"] } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] } diff --git a/crates/tor-proto/Cargo.toml b/crates/tor-proto/Cargo.toml index 73aa2cfd1..573903c3c 100644 --- a/crates/tor-proto/Cargo.toml +++ b/crates/tor-proto/Cargo.toml @@ -49,7 +49,7 @@ tokio-crate = { package = "tokio", version = "1.7", optional = true } tokio-util = { version = "0.7.0", features = ["compat"], optional = true } tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } tor-bytes = { path = "../tor-bytes", version = "0.6.1" } -tor-cell = { path = "../tor-cell", version = "0.7.0" } +tor-cell = { path = "../tor-cell", version = "0.8.0" } tor-cert = { path = "../tor-cert", version = "0.6.1" } tor-checkable = { path = "../tor-checkable", version = "0.4.0" } tor-config = { path = "../tor-config", version = "0.7.1" }