Skip to content

Commit 1627b44

Browse files
authored
release: v8.0.0-rc.1 (#474)
* deps: update deps according to ref-fvm v1.0.0-rc.3 * update the new snark version * Release 8.0.0-rc.1
1 parent 3141fe9 commit 1627b44

File tree

17 files changed

+137
-137
lines changed

17 files changed

+137
-137
lines changed

Cargo.lock

+23-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fil_builtin_actors_bundle"
33
description = "Bundle of FVM-compatible Wasm bytecode for Filecoin builtin actors"
4-
version = "8.0.0-alpha.1"
4+
version = "8.0.0-rc.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"
@@ -10,22 +10,22 @@ keywords = ["filecoin", "web3", "wasm"]
1010
exclude = ["examples", ".github"]
1111

1212
[target.'cfg(target_arch = "wasm32")'.dependencies]
13-
fil_actor_account = { version = "8.0.0-alpha.1", path = "./actors/account", features = ["fil-actor"] }
14-
fil_actor_verifreg = { version = "8.0.0-alpha.1", path = "./actors/verifreg", features = ["fil-actor"] }
15-
fil_actor_cron = { version = "8.0.0-alpha.1", path = "./actors/cron", features = ["fil-actor"] }
16-
fil_actor_market = { version = "8.0.0-alpha.1", path = "./actors/market", features = ["fil-actor"] }
17-
fil_actor_multisig = { version = "8.0.0-alpha.1", path = "./actors/multisig", features = ["fil-actor"] }
18-
fil_actor_paych = { version = "8.0.0-alpha.1", path = "./actors/paych", features = ["fil-actor"] }
19-
fil_actor_power = { version = "8.0.0-alpha.1", path = "./actors/power", features = ["fil-actor"] }
20-
fil_actor_miner = { version = "8.0.0-alpha.1", path = "./actors/miner", features = ["fil-actor"] }
21-
fil_actor_reward = { version = "8.0.0-alpha.1", path = "./actors/reward", features = ["fil-actor"] }
22-
fil_actor_system = { version = "8.0.0-alpha.1", path = "./actors/system", features = ["fil-actor"] }
23-
fil_actor_init = { version = "8.0.0-alpha.1", path = "./actors/init", features = ["fil-actor"] }
24-
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "./actors/runtime", features = ["fil-actor"] }
13+
fil_actor_account = { version = "8.0.0-rc.1", path = "./actors/account", features = ["fil-actor"] }
14+
fil_actor_verifreg = { version = "8.0.0-rc.1", path = "./actors/verifreg", features = ["fil-actor"] }
15+
fil_actor_cron = { version = "8.0.0-rc.1", path = "./actors/cron", features = ["fil-actor"] }
16+
fil_actor_market = { version = "8.0.0-rc.1", path = "./actors/market", features = ["fil-actor"] }
17+
fil_actor_multisig = { version = "8.0.0-rc.1", path = "./actors/multisig", features = ["fil-actor"] }
18+
fil_actor_paych = { version = "8.0.0-rc.1", path = "./actors/paych", features = ["fil-actor"] }
19+
fil_actor_power = { version = "8.0.0-rc.1", path = "./actors/power", features = ["fil-actor"] }
20+
fil_actor_miner = { version = "8.0.0-rc.1", path = "./actors/miner", features = ["fil-actor"] }
21+
fil_actor_reward = { version = "8.0.0-rc.1", path = "./actors/reward", features = ["fil-actor"] }
22+
fil_actor_system = { version = "8.0.0-rc.1", path = "./actors/system", features = ["fil-actor"] }
23+
fil_actor_init = { version = "8.0.0-rc.1", path = "./actors/init", features = ["fil-actor"] }
24+
fil_actors_runtime = { version = "8.0.0-rc.1", path = "./actors/runtime", features = ["fil-actor"] }
2525
fil_actor_state = { version = "8.0.0-alpha.1", path = "./actors/state", features = ["fil-actor"] }
2626

2727
[build-dependencies]
28-
fil_actor_bundler = "3.0.3"
28+
fil_actor_bundler = "3.0.4"
2929
cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
3030

3131
[dependencies]

actors/account/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fil_actor_account"
33
description = "Builtin account actor for Filecoin"
4-
version = "8.0.0-alpha.1"
4+
version = "8.0.0-rc.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -13,16 +13,16 @@ keywords = ["filecoin", "web3", "wasm"]
1313
crate-type = ["cdylib", "lib"]
1414

1515
[dependencies]
16-
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
17-
fvm_shared = { version = "0.7.1", default-features = false }
16+
fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] }
17+
fvm_shared = { version = "0.8.0", default-features = false }
1818
serde = { version = "1.0.136", features = ["derive"] }
1919
num-traits = "0.2.14"
2020
num-derive = "0.3.3"
2121
fvm_ipld_blockstore = "0.1.1"
22-
fvm_ipld_encoding = "0.2.1"
22+
fvm_ipld_encoding = "0.2.2"
2323

2424
[dev-dependencies]
25-
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] }
25+
fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] }
2626

2727
[features]
2828
fil-actor = []

actors/cron/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fil_actor_cron"
33
description = "Builtin cron actor for Filecoin"
4-
version = "8.0.0-alpha.1"
4+
version = "8.0.0-rc.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -14,17 +14,17 @@ keywords = ["filecoin", "web3", "wasm"]
1414
crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
17-
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
18-
fvm_shared = { version = "0.7.1", default-features = false }
17+
fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] }
18+
fvm_shared = { version = "0.8.0", default-features = false }
1919
num-traits = "0.2.14"
2020
num-derive = "0.3.3"
2121
log = "0.4.14"
2222
serde = { version = "1.0.136", features = ["derive"] }
2323
fvm_ipld_blockstore = "0.1.1"
24-
fvm_ipld_encoding = "0.2.1"
24+
fvm_ipld_encoding = "0.2.2"
2525

2626
[dev-dependencies]
27-
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] }
27+
fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] }
2828
[features]
2929
fil-actor = []
3030

actors/init/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fil_actor_init"
33
description = "Builtin init actor for Filecoin"
4-
version = "8.0.0-alpha.1"
4+
version = "8.0.0-rc.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -14,8 +14,8 @@ keywords = ["filecoin", "web3", "wasm"]
1414
crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
17-
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
18-
fvm_shared = { version = "0.7.1", default-features = false }
17+
fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] }
18+
fvm_shared = { version = "0.8.0", default-features = false }
1919
fvm_ipld_hamt = "0.5.1"
2020
serde = { version = "1.0.136", features = ["derive"] }
2121
num-traits = "0.2.14"
@@ -24,10 +24,10 @@ cid = { version = "0.8.3", default-features = false, features = ["serde-codec"]
2424
anyhow = "1.0.56"
2525
log = "0.4.14"
2626
fvm_ipld_blockstore = "0.1.1"
27-
fvm_ipld_encoding = "0.2.1"
27+
fvm_ipld_encoding = "0.2.2"
2828

2929
[dev-dependencies]
30-
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] }
30+
fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] }
3131
[features]
3232
fil-actor = []
3333

actors/market/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fil_actor_market"
33
description = "Builtin market actor for Filecoin"
4-
version = "8.0.0-alpha.1"
4+
version = "8.0.0-rc.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -14,9 +14,9 @@ keywords = ["filecoin", "web3", "wasm"]
1414
crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
17-
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["fil-actor"] }
17+
fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] }
1818
fvm_ipld_hamt = "0.5.1"
19-
fvm_shared = { version = "0.7.1", default-features = false }
19+
fvm_shared = { version = "0.8.0", default-features = false }
2020
fvm_ipld_bitfield = "0.5.2"
2121
num-traits = "0.2.14"
2222
num-derive = "0.3.3"
@@ -25,15 +25,15 @@ cid = { version = "0.8.3", default-features = false, features = ["serde-codec"]
2525
log = "0.4.14"
2626
anyhow = "1.0.56"
2727
fvm_ipld_blockstore = "0.1.1"
28-
fvm_ipld_encoding = "0.2.1"
28+
fvm_ipld_encoding = "0.2.2"
2929
libipld-core = { version = "0.13.1", features = ["serde-codec"] }
3030

3131
[dev-dependencies]
32-
fil_actors_runtime = { version = "8.0.0-alpha.1", path = "../runtime", features = ["test_utils", "sector-default"] }
33-
fil_actor_power = { version = "8.0.0-alpha.1", path = "../power" }
34-
fil_actor_reward = { version = "8.0.0-alpha.1", path = "../reward" }
35-
fil_actor_verifreg = { version = "8.0.0-alpha.1", path = "../verifreg" }
36-
fvm_ipld_amt = { version = "0.4.1", features = ["go-interop"] }
32+
fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] }
33+
fil_actor_power = { version = "8.0.0-rc.1", path = "../power" }
34+
fil_actor_reward = { version = "8.0.0-rc.1", path = "../reward" }
35+
fil_actor_verifreg = { version = "8.0.0-rc.1", path = "../verifreg" }
36+
fvm_ipld_amt = { version = "0.4.2", features = ["go-interop"] }
3737
multihash = { version = "0.16.1", default-features = false }
3838
regex = "1"
3939
itertools = "0.10"

0 commit comments

Comments
 (0)