Skip to content

Commit e3efae1

Browse files
authored
Merge pull request #419 from filecoin-project/chore/release
chore: release everything
2 parents 753ce5d + bea97ea commit e3efae1

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

fvm/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fvm"
33
description = "Filecoin Virtual Machine reference implementation"
4-
version = "0.3.0"
4+
version = "0.4.0"
55
license = "MIT OR Apache-2.0"
66
authors = ["Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"
@@ -21,8 +21,8 @@ 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 }
2323
fvm_shared = { version = "0.3.0", path = "../shared", features = ["crypto"] }
24-
fvm_ipld_hamt = { version = "0.2.0", path = "../ipld/hamt"}
25-
fvm_ipld_amt = { version = "0.2.0", path = "../ipld/amt"}
24+
fvm_ipld_hamt = { version = "0.3.0", path = "../ipld/hamt"}
25+
fvm_ipld_amt = { version = "0.3.0", path = "../ipld/amt"}
2626
serde = { version = "1.0", features = ["derive"] }
2727
serde_tuple = "0.5"
2828
serde_repr = "0.1"

ipld/amt/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_ipld_amt"
33
description = "Sharded IPLD Array implementation."
4-
version = "0.2.0"
4+
version = "0.3.0"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"

ipld/bitfield/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_ipld_bitfield"
33
description = "Bitfield logic for use in Filecoin actors"
4-
version = "0.2.1"
4+
version = "0.3.0"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"

ipld/car/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_ipld_car"
33
description = "IPLD CAR handling library"
4-
version = "0.2.0"
4+
version = "0.3.0"
55
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
66
edition = "2018"
77
license = "MIT OR Apache-2.0"

ipld/hamt/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_ipld_hamt"
33
description = "Sharded IPLD HashMap implementation."
4-
version = "0.2.0"
4+
version = "0.3.0"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"

sdk/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_sdk"
33
description = "Filecoin Virtual Machine actor development SDK"
4-
version = "0.2.2"
4+
version = "0.3.0"
55
license = "MIT OR Apache-2.0"
66
authors = ["Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"

testing/conformance/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ publish = false
99
repository = "https://github.com/filecoin-project/ref-fvm"
1010

1111
[dependencies]
12-
fvm = { version = "0.3.0", path = "../../fvm", default-features = false }
12+
fvm = { version = "0.4.0", path = "../../fvm", default-features = false }
1313
fvm_shared = { version = "0.3.0", path = "../../shared" }
14-
fvm_ipld_hamt = { version = "0.2.0", path = "../../ipld/hamt"}
15-
fvm_ipld_amt = { version = "0.2.0", path = "../../ipld/amt"}
16-
fvm_ipld_car = { version = "0.2.0", path = "../../ipld/car" }
14+
fvm_ipld_hamt = { version = "0.3.0", path = "../../ipld/hamt"}
15+
fvm_ipld_amt = { version = "0.3.0", path = "../../ipld/amt"}
16+
fvm_ipld_car = { version = "0.3.0", path = "../../ipld/car" }
1717

1818
anyhow = "1.0.47"
1919
thiserror = "1.0.30"

0 commit comments

Comments
 (0)