Skip to content

Commit ebbf25e

Browse files
authored
Bump version to v11 (#1264)
* Bump version to v11 * Get non comma trailed version numbers too * Generage lock file --------- Co-authored-by: zenground0 <[email protected]>
1 parent 424669b commit ebbf25e

File tree

22 files changed

+108
-108
lines changed

22 files changed

+108
-108
lines changed

Cargo.lock

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

Cargo.toml

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

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

3333
[build-dependencies]
3434
fil_actor_bundler = "5.0.0"
3535
cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
36-
fil_actors_runtime = { version = "10.0.0", path = "runtime" }
36+
fil_actors_runtime = { version = "11.0.0-alpha.1", path = "runtime" }
3737
num-traits = "0.2.15"
3838

3939
[dependencies]

actors/account/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_account"
33
description = "Builtin account actor for Filecoin"
4-
version = "10.0.0"
4+
version = "11.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <[email protected]>", "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 = "10.0.0", path = "../../runtime" }
16+
fil_actors_runtime = { version = "11.0.0-alpha.1", path = "../../runtime" }
1717
frc42_dispatch = "3.1.0"
1818
fvm_actor_utils = "5.0.0"
1919
fvm_shared = { version = "3.0.0", default-features = false }

actors/cron/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_cron"
33
description = "Builtin cron actor for Filecoin"
4-
version = "10.0.0"
4+
version = "11.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <[email protected]>", "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 = "10.0.0", path = "../../runtime" }
17+
fil_actors_runtime = { version = "11.0.0-alpha.1", path = "../../runtime" }
1818
fvm_shared = { version = "3.0.0", default-features = false }
1919
num-traits = "0.2.14"
2020
num-derive = "0.3.3"

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 = "10.0.0"
4+
version = "11.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 = "10.0.0", path = "../../runtime"}
17+
fil_actors_runtime = { version = "11.0.0-alpha.1", path = "../../runtime"}
1818

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

actors/eam/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_eam"
33
description = "Builtin Ethereum address manager actor for Filecoin"
4-
version = "10.0.0"
4+
version = "11.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"
@@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm", "evm"]
1414
crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
17-
fil_actors_runtime = { version = "10.0.0", path = "../../runtime" }
17+
fil_actors_runtime = { version = "11.0.0-alpha.1", path = "../../runtime" }
1818
serde = { version = "1.0.136", features = ["derive"] }
1919
serde_tuple = "0.5"
2020
rlp = { version = "0.5.1", default-features = false }
@@ -28,7 +28,7 @@ fvm_shared = { version = "3.0.0", default-features = false }
2828
num-traits = "0.2.15"
2929
num-derive = "0.3.3"
3030
hex-literal = "0.3.4"
31-
fil_actors_evm_shared = { version = "10.0.0", path = "../evm/shared" }
31+
fil_actors_evm_shared = { version = "11.0.0-alpha.1", path = "../evm/shared" }
3232

3333
[dev-dependencies]
3434
fil_actor_evm = { path = "../evm"}

actors/ethaccount/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_ethaccount"
33
description = "Builtin Ethereum Externally Owned Address actor for Filecoin"
4-
version = "10.0.0"
4+
version = "11.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"
@@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm", "evm"]
1414
crate-type = ["cdylib", "lib"]
1515

1616
[dependencies]
17-
fil_actors_runtime = { version = "10.0.0", path = "../../runtime" }
17+
fil_actors_runtime = { version = "11.0.0-alpha.1", path = "../../runtime" }
1818
frc42_dispatch = "3.1.0"
1919
fvm_actor_utils = "5.0.0"
2020
serde = { version = "1.0.136", features = ["derive"] }

actors/evm/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_evm"
33
description = "Builtin EVM actor for Filecoin"
4-
version = "10.0.0"
4+
version = "11.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"
@@ -15,7 +15,7 @@ exclude = ["/precompile-testdata", "/tests/measurements", "/tests/contracts"]
1515
crate-type = ["cdylib", "lib"]
1616

1717
[dependencies]
18-
fil_actors_runtime = { version = "10.0.0", path = "../../runtime" }
18+
fil_actors_runtime = { version = "11.0.0-alpha.1", path = "../../runtime" }
1919
fvm_shared = { version = "3.0.0", default-features = false }
2020
fvm_ipld_kamt = { version = "0.2.0" }
2121
serde = { version = "1.0.136", features = ["derive"] }
@@ -32,7 +32,7 @@ hex = { version = "0.4.3", features = ["serde"] }
3232
hex-literal = "0.3.4"
3333
substrate-bn = { version = "0.6.0", default-features = false }
3434
frc42_dispatch = "3.1.0"
35-
fil_actors_evm_shared = { version = "10.0.0", path = "shared" }
35+
fil_actors_evm_shared = { version = "11.0.0-alpha.1", path = "shared" }
3636

3737
[dev-dependencies]
3838
lazy_static = "1.4.0"

actors/evm/shared/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_actors_evm_shared"
33
description = "Shared libraries for the built-in EVM actor for Filecoin"
4-
version = "10.0.0"
4+
version = "11.0.0-alpha.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"
@@ -11,7 +11,7 @@ keywords = ["filecoin", "web3", "wasm", "evm"]
1111
[dependencies]
1212
serde = { version = "1.0.136", features = ["derive"] }
1313
fvm_shared = { version = "3.0.0", default-features = false }
14-
fil_actors_runtime = { version = "10.0.0", path = "../../../runtime" }
14+
fil_actors_runtime = { version = "11.0.0-alpha.1", path = "../../../runtime" }
1515
fvm_ipld_encoding = "0.3.3"
1616
uint = { version = "0.9.3", default-features = false }
1717
hex = "0.4.3"

0 commit comments

Comments
 (0)