Skip to content

Commit

Permalink
chore: bump version (#801)
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
geoff-vball authored Oct 31, 2022
1 parent aaf2d73 commit 38a7cd5
Show file tree
Hide file tree
Showing 17 changed files with 95 additions and 95 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fil_builtin_actors_bundle"
description = "Bundle of FVM-compatible Wasm bytecode for Filecoin builtin actors"
version = "9.0.2"
version = "9.0.3"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand All @@ -13,23 +13,23 @@ exclude = ["examples", ".github"]
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fil_actor_account = { version = "9.0.2", path = "./actors/account", features = ["fil-actor"] }
fil_actor_cron = { version = "9.0.2", path = "./actors/cron", features = ["fil-actor"] }
fil_actor_datacap = { version = "9.0.2", path = "./actors/datacap", features = ["fil-actor"] }
fil_actor_init = { version = "9.0.2", path = "./actors/init", features = ["fil-actor"] }
fil_actor_market = { version = "9.0.2", path = "./actors/market", features = ["fil-actor"] }
fil_actor_miner = { version = "9.0.2", path = "./actors/miner", features = ["fil-actor"] }
fil_actor_multisig = { version = "9.0.2", path = "./actors/multisig", features = ["fil-actor"] }
fil_actor_paych = { version = "9.0.2", path = "./actors/paych", features = ["fil-actor"] }
fil_actor_power = { version = "9.0.2", path = "./actors/power", features = ["fil-actor"] }
fil_actor_reward = { version = "9.0.2", path = "./actors/reward", features = ["fil-actor"] }
fil_actor_system = { version = "9.0.2", path = "./actors/system", features = ["fil-actor"] }
fil_actor_verifreg = { version = "9.0.2", path = "./actors/verifreg", features = ["fil-actor"] }
fil_actor_account = { version = "9.0.3", path = "./actors/account", features = ["fil-actor"] }
fil_actor_cron = { version = "9.0.3", path = "./actors/cron", features = ["fil-actor"] }
fil_actor_datacap = { version = "9.0.3", path = "./actors/datacap", features = ["fil-actor"] }
fil_actor_init = { version = "9.0.3", path = "./actors/init", features = ["fil-actor"] }
fil_actor_market = { version = "9.0.3", path = "./actors/market", features = ["fil-actor"] }
fil_actor_miner = { version = "9.0.3", path = "./actors/miner", features = ["fil-actor"] }
fil_actor_multisig = { version = "9.0.3", path = "./actors/multisig", features = ["fil-actor"] }
fil_actor_paych = { version = "9.0.3", path = "./actors/paych", features = ["fil-actor"] }
fil_actor_power = { version = "9.0.3", path = "./actors/power", features = ["fil-actor"] }
fil_actor_reward = { version = "9.0.3", path = "./actors/reward", features = ["fil-actor"] }
fil_actor_system = { version = "9.0.3", path = "./actors/system", features = ["fil-actor"] }
fil_actor_verifreg = { version = "9.0.3", path = "./actors/verifreg", features = ["fil-actor"] }

[build-dependencies]
fil_actor_bundler = "4.0.0"
cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
fil_actors_runtime = { version = "9.0.2", path = "runtime" }
fil_actors_runtime = { version = "9.0.3", path = "runtime" }
num-traits = "0.2.15"

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions actors/account/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fil_actor_account"
description = "Builtin account actor for Filecoin"
version = "9.0.2"
version = "9.0.3"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
Expand All @@ -13,7 +13,7 @@ keywords = ["filecoin", "web3", "wasm"]
crate-type = ["cdylib", "lib"]

[dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime" }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime" }
frc42_dispatch = "1.0.0"
fvm_shared = { version = "2.0.0-alpha.2", default-features = false }
serde = { version = "1.0.136", features = ["derive"] }
Expand All @@ -24,7 +24,7 @@ fvm_ipld_encoding = "0.2.2"
anyhow = "1.0.65"

[dev-dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime", features = ["test_utils", "sector-default"] }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime", features = ["test_utils", "sector-default"] }

[features]
fil-actor = ["fil_actors_runtime/fil-actor"]
6 changes: 3 additions & 3 deletions actors/cron/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fil_actor_cron"
description = "Builtin cron actor for Filecoin"
version = "9.0.2"
version = "9.0.3"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
Expand All @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
crate-type = ["cdylib", "lib"]

[dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime" }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime" }
fvm_shared = { version = "2.0.0-alpha.2", default-features = false }
num-traits = "0.2.14"
num-derive = "0.3.3"
Expand All @@ -24,7 +24,7 @@ fvm_ipld_blockstore = "0.1.1"
fvm_ipld_encoding = "0.2.2"

[dev-dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime", features = ["test_utils", "sector-default"] }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime", features = ["test_utils", "sector-default"] }

[features]
fil-actor = ["fil_actors_runtime/fil-actor"]
4 changes: 2 additions & 2 deletions actors/datacap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fil_actor_datacap"
description = "Builtin data cap actor for Filecoin"
version = "9.0.2"
version = "9.0.3"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
Expand All @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
crate-type = ["cdylib", "lib"]

[dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime"}
fil_actors_runtime = { version = "9.0.3", path = "../../runtime"}

cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
frc42_dispatch = "1.0.0"
Expand Down
6 changes: 3 additions & 3 deletions actors/init/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fil_actor_init"
description = "Builtin init actor for Filecoin"
version = "9.0.2"
version = "9.0.3"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
Expand All @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
crate-type = ["cdylib", "lib"]

[dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime" }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime" }
fvm_shared = { version = "2.0.0-alpha.2", default-features = false }
fvm_ipld_hamt = "0.5.1"
serde = { version = "1.0.136", features = ["derive"] }
Expand All @@ -27,7 +27,7 @@ fvm_ipld_blockstore = "0.1.1"
fvm_ipld_encoding = "0.2.2"

[dev-dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime", features = ["test_utils", "sector-default"] }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime", features = ["test_utils", "sector-default"] }

[features]
fil-actor = ["fil_actors_runtime/fil-actor"]
6 changes: 3 additions & 3 deletions actors/market/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fil_actor_market"
description = "Builtin market actor for Filecoin"
version = "9.0.2"
version = "9.0.3"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
Expand All @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
crate-type = ["cdylib", "lib"]

[dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime"}
fil_actors_runtime = { version = "9.0.3", path = "../../runtime"}

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

[dev-dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime", features = ["test_utils", "sector-default"] }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime", features = ["test_utils", "sector-default"] }
fil_actor_power = { path = "../power" }
fil_actor_reward = { path = "../reward" }
fil_actor_verifreg = { path = "../verifreg" }
Expand Down
6 changes: 3 additions & 3 deletions actors/miner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fil_actor_miner"
description = "Builtin miner actor for Filecoin"
version = "9.0.2"
version = "9.0.3"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
Expand All @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
crate-type = ["cdylib", "lib"]

[dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime" }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime" }
fvm_shared = { version = "2.0.0-alpha.2", default-features = false }
fvm_ipld_bitfield = "0.5.2"
fvm_ipld_amt = { version = "0.4.2", features = ["go-interop"] }
Expand All @@ -33,7 +33,7 @@ fvm_ipld_encoding = "0.2.2"
multihash = { version = "0.16.2", default-features = false }

[dev-dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime", features = ["test_utils", "sector-default"] }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime", features = ["test_utils", "sector-default"] }
fil_actor_account = { path = "../account" }
fil_actor_reward = { path = "../reward" }
fil_actor_power = { path = "../power" }
Expand Down
6 changes: 3 additions & 3 deletions actors/multisig/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fil_actor_multisig"
description = "Builtin multisig actor for Filecoin"
version = "9.0.2"
version = "9.0.3"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
Expand All @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
crate-type = ["cdylib", "lib"]

[dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime"}
fil_actors_runtime = { version = "9.0.3", path = "../../runtime"}

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

[dev-dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime", features = ["test_utils", "sector-default"] }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime", features = ["test_utils", "sector-default"] }
lazy_static = "1.4.0"

[features]
Expand Down
6 changes: 3 additions & 3 deletions actors/paych/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fil_actor_paych"
description = "Builtin paych actor for Filecoin"
version = "9.0.2"
version = "9.0.3"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
Expand All @@ -14,7 +14,7 @@ keywords = ["filecoin", "web3", "wasm"]
crate-type = ["cdylib", "lib"]

[dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime" }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime" }
fvm_shared = { version = "2.0.0-alpha.2", default-features = false }
num-traits = "0.2.14"
num-derive = "0.3.3"
Expand All @@ -25,7 +25,7 @@ fvm_ipld_blockstore = "0.1.1"
fvm_ipld_encoding = "0.2.2"

[dev-dependencies]
fil_actors_runtime = { version = "9.0.2", path = "../../runtime", features = ["test_utils", "sector-default"] }
fil_actors_runtime = { version = "9.0.3", path = "../../runtime", features = ["test_utils", "sector-default"] }
fvm_ipld_amt = { version = "0.4.2", features = ["go-interop"] }
derive_builder = "0.10.2"

Expand Down
Loading

0 comments on commit 38a7cd5

Please sign in to comment.