From f8675740766c64cb2b0e62e511b507a5771b4dfc Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Wed, 6 Sep 2023 13:56:10 -0700 Subject: [PATCH] chore: release fvm_ipld_car v0.7.1 --- Cargo.lock | 26 +++++++++++++------------- ipld/car/CHANGELOG.md | 4 ++++ ipld/car/Cargo.toml | 2 +- testing/conformance/Cargo.toml | 2 +- testing/integration/Cargo.toml | 2 +- 5 files changed, 20 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index feb98d2cf..31f764da3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1409,7 +1409,7 @@ dependencies = [ "clap", "futures", "fvm_ipld_blockstore 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fvm_ipld_car 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fvm_ipld_car 0.7.0", "fvm_ipld_encoding 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde", "serde_ipld_dagcbor", @@ -2344,7 +2344,7 @@ dependencies = [ "futures", "fvm", "fvm_ipld_blockstore 0.2.0", - "fvm_ipld_car 0.7.0", + "fvm_ipld_car 0.7.1", "fvm_ipld_encoding 0.4.0", "fvm_shared 3.6.0", "itertools 0.11.0", @@ -2388,7 +2388,7 @@ dependencies = [ "fvm", "fvm_gas_calibration_shared", "fvm_ipld_blockstore 0.2.0", - "fvm_ipld_car 0.7.0", + "fvm_ipld_car 0.7.1", "fvm_ipld_encoding 0.4.0", "fvm_shared 3.6.0", "fvm_test_actors", @@ -2491,30 +2491,30 @@ dependencies = [ [[package]] name = "fvm_ipld_car" version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42a70f56d42a428d60b89440136428f8af7abc723dcf6d763d82e28d518a8141" dependencies = [ - "async-std", "cid 0.10.1", "futures", - "fvm_ipld_blockstore 0.2.0", - "fvm_ipld_encoding 0.4.0", + "fvm_ipld_blockstore 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fvm_ipld_encoding 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "integer-encoding", "serde", "thiserror", - "unsigned-varint", ] [[package]] name = "fvm_ipld_car" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42a70f56d42a428d60b89440136428f8af7abc723dcf6d763d82e28d518a8141" +version = "0.7.1" dependencies = [ + "async-std", "cid 0.10.1", "futures", - "fvm_ipld_blockstore 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "fvm_ipld_encoding 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "integer-encoding", + "fvm_ipld_blockstore 0.2.0", + "fvm_ipld_encoding 0.4.0", "serde", "thiserror", + "unsigned-varint", ] [[package]] diff --git a/ipld/car/CHANGELOG.md b/ipld/car/CHANGELOG.md index e33bf1c47..84e49ee9d 100644 --- a/ipld/car/CHANGELOG.md +++ b/ipld/car/CHANGELOG.md @@ -4,6 +4,10 @@ Changes to the FVM's CAR implementation. ## [Unreleased] +## 0.7.0 [2023-09-06) + +Replace the internal integer-encoding dependency with unsigned-varint. This won't affect users but cleans up our dependency tree a bit. + ## 0.7.0 [2023-06-28) Breaking Changes: diff --git a/ipld/car/Cargo.toml b/ipld/car/Cargo.toml index c83ff918b..1ee727365 100644 --- a/ipld/car/Cargo.toml +++ b/ipld/car/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fvm_ipld_car" description = "IPLD CAR handling library" -version = "0.7.0" +version = "0.7.1" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/testing/conformance/Cargo.toml b/testing/conformance/Cargo.toml index f27f971c1..79820f5e2 100644 --- a/testing/conformance/Cargo.toml +++ b/testing/conformance/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/filecoin-project/ref-fvm" [dependencies] fvm_shared = { version = "3.6.0", path = "../../shared" } -fvm_ipld_car = { version = "0.7.0", path = "../../ipld/car" } +fvm_ipld_car = { version = "0.7.1", path = "../../ipld/car" } fvm_ipld_blockstore = { version = "0.2.0", path = "../../ipld/blockstore" } fvm_ipld_encoding = { version = "0.4.0", path = "../../ipld/encoding" } diff --git a/testing/integration/Cargo.toml b/testing/integration/Cargo.toml index 78d178a80..60bf1d65f 100644 --- a/testing/integration/Cargo.toml +++ b/testing/integration/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/filecoin-project/ref-fvm" [dependencies] fvm = { version = "3.8.0", path = "../../fvm", default-features = false, features = ["testing"] } fvm_shared = { version = "3.6.0", path = "../../shared", features = ["testing"] } -fvm_ipld_car = { version = "0.7.0", path = "../../ipld/car" } +fvm_ipld_car = { version = "0.7.1", path = "../../ipld/car" } fvm_ipld_blockstore = { version = "0.2.0", path = "../../ipld/blockstore" } fvm_ipld_encoding = { version = "0.4.0", path = "../../ipld/encoding" }