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.)
This commit is contained in:
Nick Mathewson 2023-02-01 10:42:58 -05:00
parent 7c1b6a5a81
commit a2b1f20216
5 changed files with 6 additions and 6 deletions

2
Cargo.lock generated
View File

@ -3598,7 +3598,7 @@ dependencies = [
[[package]]
name = "tor-cell"
version = "0.7.0"
version = "0.8.0"
dependencies = [
"arrayref",
"bitflags",

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "tor-cell"
version = "0.7.0"
version = "0.8.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2021"
rust-version = "1.60"

View File

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

View File

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