Skip to content

Commit 8b11754

Browse files
authored
Merge pull request #422 from filecoin-project/chore/release-shared
chore: release fvm_shared
1 parent c2fbc55 commit 8b11754

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

fvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ahash = "0.7"
2020
num-derive = "0.3.3"
2121
cid = { version = "0.8.2", default-features = false, features = ["serde-codec"] }
2222
multihash = { version = "0.16.1", default-features = false }
23-
fvm_shared = { version = "0.3.0", path = "../shared", features = ["crypto"] }
23+
fvm_shared = { version = "0.3.1", path = "../shared", features = ["crypto"] }
2424
fvm_ipld_hamt = { version = "0.3.0", path = "../ipld/hamt"}
2525
fvm_ipld_amt = { version = "0.3.0", path = "../ipld/amt"}
2626
serde = { version = "1.0", features = ["derive"] }

ipld/amt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ thiserror = "1.0"
1414
once_cell = "1.5"
1515
ahash = { version = "0.7", optional = true }
1616
itertools = "0.10"
17-
fvm_shared = { version = "0.3.0", path = "../../shared" }
17+
fvm_shared = { version = "0.3.1", path = "../../shared" }
1818
anyhow = "1.0.51"
1919

2020
[features]

ipld/bitfield/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = "https://github.com/filecoin-project/ref-fvm"
1111
unsigned-varint = "0.7.1"
1212
serde = { version = "1.0", features = ["derive"] }
1313
serde_bytes = { package = "cs_serde_bytes", version = "0.12" }
14-
fvm_shared = { version = "0.3.0", path = "../../shared" }
14+
fvm_shared = { version = "0.3.1", path = "../../shared" }
1515

1616
[dev-dependencies]
1717
rand_xorshift = "0.2.0"

ipld/car/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ serde = { version = "1.0", features = ["derive"] }
1313
thiserror = "1.0"
1414
futures = "0.3.5"
1515
integer-encoding = { version = "3.0", features = ["futures_async"] }
16-
fvm_shared = { version = "0.3.0", path = "../../shared" }
16+
fvm_shared = { version = "0.3.1", path = "../../shared" }
1717

1818
[dev-dependencies]
1919
async-std = { version = "1.9", features = ["attributes"] }

ipld/hamt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ thiserror = "1.0"
1616
sha2 = "0.10"
1717
once_cell = "1.5"
1818
forest_hash_utils = "0.1"
19-
fvm_shared = { version = "0.3.0", path = "../../shared" }
19+
fvm_shared = { version = "0.3.1", path = "../../shared" }
2020
anyhow = "1.0.51"
2121
libipld-core = { version = "0.13.1", features = ["serde-codec"] }
2222

sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ crate-type = ["lib"]
1212

1313
[dependencies]
1414
cid = { version = "0.8.2", default-features = false }
15-
fvm_shared = { version = "0.3.0", path = "../shared" }
15+
fvm_shared = { version = "0.3.1", path = "../shared" }
1616
## num-traits; disabling default features makes it play nice with no_std.
1717
num-traits = { version = "0.2.14", default-features = false }
1818
lazy_static = "1.4.0"

shared/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fvm_shared"
33
description = "Filecoin Virtual Machine shared types and functions"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]

testing/conformance/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repository = "https://github.com/filecoin-project/ref-fvm"
1010

1111
[dependencies]
1212
fvm = { version = "0.4.0", path = "../../fvm", default-features = false }
13-
fvm_shared = { version = "0.3.0", path = "../../shared" }
13+
fvm_shared = { version = "0.3.1", path = "../../shared" }
1414
fvm_ipld_hamt = { version = "0.3.0", path = "../../ipld/hamt"}
1515
fvm_ipld_amt = { version = "0.3.0", path = "../../ipld/amt"}
1616
fvm_ipld_car = { version = "0.3.0", path = "../../ipld/car" }

0 commit comments

Comments
 (0)