Skip to content

Commit 931f7da

Browse files
authored
chore: set version to v10 (#791)
1 parent 94ecfe2 commit 931f7da

File tree

17 files changed

+96
-96
lines changed

17 files changed

+96
-96
lines changed

Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 14 additions & 14 deletions
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 = "9.0.0-alpha.1"
4+
version = "10.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"
@@ -13,23 +13,23 @@ exclude = ["examples", ".github"]
1313
publish = false
1414

1515
[target.'cfg(target_arch = "wasm32")'.dependencies]
16-
fil_actor_account = { version = "9.0.0-alpha.1", path = "./actors/account", features = ["fil-actor"] }
17-
fil_actor_cron = { version = "9.0.0-alpha.1", path = "./actors/cron", features = ["fil-actor"] }
18-
fil_actor_datacap = { version = "9.0.0-alpha.1", path = "./actors/datacap", features = ["fil-actor"] }
19-
fil_actor_init = { version = "9.0.0-alpha.1", path = "./actors/init", features = ["fil-actor"] }
20-
fil_actor_market = { version = "9.0.0-alpha.1", path = "./actors/market", features = ["fil-actor"] }
21-
fil_actor_miner = { version = "9.0.0-alpha.1", path = "./actors/miner", features = ["fil-actor"] }
22-
fil_actor_multisig = { version = "9.0.0-alpha.1", path = "./actors/multisig", features = ["fil-actor"] }
23-
fil_actor_paych = { version = "9.0.0-alpha.1", path = "./actors/paych", features = ["fil-actor"] }
24-
fil_actor_power = { version = "9.0.0-alpha.1", path = "./actors/power", features = ["fil-actor"] }
25-
fil_actor_reward = { version = "9.0.0-alpha.1", path = "./actors/reward", features = ["fil-actor"] }
26-
fil_actor_system = { version = "9.0.0-alpha.1", path = "./actors/system", features = ["fil-actor"] }
27-
fil_actor_verifreg = { version = "9.0.0-alpha.1", path = "./actors/verifreg", features = ["fil-actor"] }
16+
fil_actor_account = { version = "10.0.0-alpha.1", path = "./actors/account", features = ["fil-actor"] }
17+
fil_actor_cron = { version = "10.0.0-alpha.1", path = "./actors/cron", features = ["fil-actor"] }
18+
fil_actor_datacap = { version = "10.0.0-alpha.1", path = "./actors/datacap", features = ["fil-actor"] }
19+
fil_actor_init = { version = "10.0.0-alpha.1", path = "./actors/init", features = ["fil-actor"] }
20+
fil_actor_market = { version = "10.0.0-alpha.1", path = "./actors/market", features = ["fil-actor"] }
21+
fil_actor_miner = { version = "10.0.0-alpha.1", path = "./actors/miner", features = ["fil-actor"] }
22+
fil_actor_multisig = { version = "10.0.0-alpha.1", path = "./actors/multisig", features = ["fil-actor"] }
23+
fil_actor_paych = { version = "10.0.0-alpha.1", path = "./actors/paych", features = ["fil-actor"] }
24+
fil_actor_power = { version = "10.0.0-alpha.1", path = "./actors/power", features = ["fil-actor"] }
25+
fil_actor_reward = { version = "10.0.0-alpha.1", path = "./actors/reward", features = ["fil-actor"] }
26+
fil_actor_system = { version = "10.0.0-alpha.1", path = "./actors/system", features = ["fil-actor"] }
27+
fil_actor_verifreg = { version = "10.0.0-alpha.1", path = "./actors/verifreg", features = ["fil-actor"] }
2828

2929
[build-dependencies]
3030
fil_actor_bundler = "4.0.0"
3131
cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
32-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "runtime" }
32+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "runtime" }
3333
num-traits = "0.2.15"
3434

3535
[dependencies]

actors/account/Cargo.toml

Lines changed: 3 additions & 3 deletions
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 = "9.0.0-alpha.1"
4+
version = "10.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -13,7 +13,7 @@ keywords = ["filecoin", "web3", "wasm"]
1313
crate-type = ["cdylib", "lib"]
1414

1515
[dependencies]
16-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime" }
16+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime" }
1717
frc42_dispatch = "1.0.0"
1818
fvm_shared = { version = "2.0.0-alpha.2", default-features = false }
1919
serde = { version = "1.0.136", features = ["derive"] }
@@ -24,7 +24,7 @@ fvm_ipld_encoding = "0.2.2"
2424
anyhow = "1.0.65"
2525

2626
[dev-dependencies]
27-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
27+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
2828

2929
[features]
3030
fil-actor = ["fil_actors_runtime/fil-actor"]

actors/cron/Cargo.toml

Lines changed: 3 additions & 3 deletions
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 = "9.0.0-alpha.1"
4+
version = "10.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
1414
crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
17-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime" }
17+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime" }
1818
fvm_shared = { version = "2.0.0-alpha.2", default-features = false }
1919
num-traits = "0.2.14"
2020
num-derive = "0.3.3"
@@ -24,7 +24,7 @@ fvm_ipld_blockstore = "0.1.1"
2424
fvm_ipld_encoding = "0.2.2"
2525

2626
[dev-dependencies]
27-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
27+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
2828

2929
[features]
3030
fil-actor = ["fil_actors_runtime/fil-actor"]

actors/datacap/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fil_actor_datacap"
33
description = "Builtin data cap actor for Filecoin"
4-
version = "9.0.0-alpha.1"
4+
version = "10.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
1414
crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
17-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime"}
17+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime"}
1818

1919
cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
2020
frc42_dispatch = "1.0.0"

actors/init/Cargo.toml

Lines changed: 3 additions & 3 deletions
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 = "9.0.0-alpha.1"
4+
version = "10.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
1414
crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
17-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime" }
17+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime" }
1818
fvm_shared = { version = "2.0.0-alpha.2", default-features = false }
1919
fvm_ipld_hamt = "0.5.1"
2020
serde = { version = "1.0.136", features = ["derive"] }
@@ -27,7 +27,7 @@ fvm_ipld_blockstore = "0.1.1"
2727
fvm_ipld_encoding = "0.2.2"
2828

2929
[dev-dependencies]
30-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
30+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
3131

3232
[features]
3333
fil-actor = ["fil_actors_runtime/fil-actor"]

actors/market/Cargo.toml

Lines changed: 4 additions & 4 deletions
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 = "9.0.0-alpha.1"
4+
version = "10.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
1414
crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
17-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime"}
17+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime"}
1818

1919
anyhow = "1.0.65"
2020
cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
@@ -32,7 +32,7 @@ num-traits = "0.2.14"
3232
serde = { version = "1.0.136", features = ["derive"] }
3333

3434
[dev-dependencies]
35-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
35+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
3636
fil_actor_power = { path = "../power" }
3737
fil_actor_reward = { path = "../reward" }
3838
fil_actor_verifreg = { path = "../verifreg" }
@@ -42,4 +42,4 @@ regex = "1"
4242
itertools = "0.10"
4343

4444
[features]
45-
fil-actor = ["fil_actors_runtime/fil-actor"]
45+
fil-actor = ["fil_actors_runtime/fil-actor"]

actors/miner/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fil_actor_miner"
33
description = "Builtin miner actor for Filecoin"
4-
version = "9.0.0-alpha.1"
4+
version = "10.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
1414
crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
17-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime" }
17+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime" }
1818
fvm_shared = { version = "2.0.0-alpha.2", default-features = false }
1919
fvm_ipld_bitfield = "0.5.2"
2020
fvm_ipld_amt = { version = "0.4.2", features = ["go-interop"] }
@@ -33,7 +33,7 @@ fvm_ipld_encoding = "0.2.2"
3333
multihash = { version = "0.16.2", default-features = false }
3434

3535
[dev-dependencies]
36-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
36+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
3737
fil_actor_account = { path = "../account" }
3838
fil_actor_reward = { path = "../reward" }
3939
fil_actor_power = { path = "../power" }

actors/multisig/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fil_actor_multisig"
33
description = "Builtin multisig actor for Filecoin"
4-
version = "9.0.0-alpha.1"
4+
version = "10.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
1414
crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
17-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime"}
17+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime"}
1818

1919
anyhow = "1.0.65"
2020
cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
@@ -30,7 +30,7 @@ num-traits = "0.2.14"
3030
serde = { version = "1.0.136", features = ["derive"] }
3131

3232
[dev-dependencies]
33-
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
33+
fil_actors_runtime = { version = "10.0.0-alpha.1", path = "../../runtime", features = ["test_utils", "sector-default"] }
3434
lazy_static = "1.4.0"
3535

3636
[features]

0 commit comments

Comments
 (0)