Skip to content

Commit

Permalink
Merge branch 'release/v11' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Apr 24, 2023
2 parents 3dcb014 + cd9ac2b commit 4dcb894
Show file tree
Hide file tree
Showing 61 changed files with 1,503 additions and 797 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ jobs:
network: [ 'mainnet', 'caterpillarnet', 'butterflynet', 'calibrationnet', 'devnet', 'testing', 'testing-fake-proofs', 'wallaby', 'hyperspace', 'devnet-wasm' ]
steps:
- name: Checking out
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: ./.github/actions/rust-cargo-run
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
command: version
uses: actions/checkout@v3
- name: Setting up cache
uses: pl-strflt/rust-sccache-action@v1
env:
SCCACHE_CACHE_SIZE: 2G
SCCACHE_DIR: ${{ github.workspace }}/.cache/sccache
CACHE_SKIP_SAVE: true
- name: Writing bundle
env:
BUILD_FIL_NETWORK: ${{ matrix.network }}
Expand Down
74 changes: 35 additions & 39 deletions Cargo.lock

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

36 changes: 18 additions & 18 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 = "11.0.0-alpha.1"
version = "11.0.0"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand All @@ -13,27 +13,27 @@ exclude = ["examples", ".github"]
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fil_actor_account = { version = "11.0.0-alpha.1", path = "./actors/account", features = ["fil-actor"] }
fil_actor_cron = { version = "11.0.0-alpha.1", path = "./actors/cron", features = ["fil-actor"] }
fil_actor_datacap = { version = "11.0.0-alpha.1", path = "./actors/datacap", features = ["fil-actor"] }
fil_actor_ethaccount = { version = "11.0.0-alpha.1", path = "actors/ethaccount", features = ["fil-actor"] }
fil_actor_eam = { version = "11.0.0-alpha.1", path = "./actors/eam", features = ["fil-actor"] }
fil_actor_evm = { version = "11.0.0-alpha.1", path = "./actors/evm", features = ["fil-actor"] }
fil_actor_init = { version = "11.0.0-alpha.1", path = "./actors/init", features = ["fil-actor"] }
fil_actor_market = { version = "11.0.0-alpha.1", path = "./actors/market", features = ["fil-actor"] }
fil_actor_miner = { version = "11.0.0-alpha.1", path = "./actors/miner", features = ["fil-actor"] }
fil_actor_multisig = { version = "11.0.0-alpha.1", path = "./actors/multisig", features = ["fil-actor"] }
fil_actor_paych = { version = "11.0.0-alpha.1", path = "./actors/paych", features = ["fil-actor"] }
fil_actor_placeholder = { version = "11.0.0-alpha.1", path = "./actors/placeholder", features = ["fil-actor"] }
fil_actor_power = { version = "11.0.0-alpha.1", path = "./actors/power", features = ["fil-actor"] }
fil_actor_reward = { version = "11.0.0-alpha.1", path = "./actors/reward", features = ["fil-actor"] }
fil_actor_system = { version = "11.0.0-alpha.1", path = "./actors/system", features = ["fil-actor"] }
fil_actor_verifreg = { version = "11.0.0-alpha.1", path = "./actors/verifreg", features = ["fil-actor"] }
fil_actor_account = { version = "11.0.0", path = "./actors/account", features = ["fil-actor"] }
fil_actor_cron = { version = "11.0.0", path = "./actors/cron", features = ["fil-actor"] }
fil_actor_datacap = { version = "11.0.0", path = "./actors/datacap", features = ["fil-actor"] }
fil_actor_ethaccount = { version = "11.0.0", path = "actors/ethaccount", features = ["fil-actor"] }
fil_actor_eam = { version = "11.0.0", path = "./actors/eam", features = ["fil-actor"] }
fil_actor_evm = { version = "11.0.0", path = "./actors/evm", features = ["fil-actor"] }
fil_actor_init = { version = "11.0.0", path = "./actors/init", features = ["fil-actor"] }
fil_actor_market = { version = "11.0.0", path = "./actors/market", features = ["fil-actor"] }
fil_actor_miner = { version = "11.0.0", path = "./actors/miner", features = ["fil-actor"] }
fil_actor_multisig = { version = "11.0.0", path = "./actors/multisig", features = ["fil-actor"] }
fil_actor_paych = { version = "11.0.0", path = "./actors/paych", features = ["fil-actor"] }
fil_actor_placeholder = { version = "11.0.0", path = "./actors/placeholder", features = ["fil-actor"] }
fil_actor_power = { version = "11.0.0", path = "./actors/power", features = ["fil-actor"] }
fil_actor_reward = { version = "11.0.0", path = "./actors/reward", features = ["fil-actor"] }
fil_actor_system = { version = "11.0.0", path = "./actors/system", features = ["fil-actor"] }
fil_actor_verifreg = { version = "11.0.0", path = "./actors/verifreg", features = ["fil-actor"] }

[build-dependencies]
fil_actor_bundler = "5.0.0"
cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
fil_actors_runtime = { version = "11.0.0-alpha.1", path = "runtime" }
fil_actors_runtime = { version = "11.0.0", path = "runtime" }
num-traits = "0.2.15"

[dependencies]
Expand Down
10 changes: 5 additions & 5 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 = "11.0.0-alpha.1"
version = "11.0.0"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand All @@ -13,10 +13,10 @@ keywords = ["filecoin", "web3", "wasm"]
crate-type = ["cdylib", "lib"]

[dependencies]
fil_actors_runtime = { version = "11.0.0-alpha.1", path = "../../runtime" }
frc42_dispatch = "3.1.0"
fvm_actor_utils = "5.0.0"
fvm_shared = { version = "3.0.0", default-features = false }
fil_actors_runtime = { version = "11.0.0", path = "../../runtime" }
frc42_dispatch = "3.2.0"
fvm_actor_utils = "6.0.0"
fvm_shared = { version = "3.2.0", default-features = false }
serde = { version = "1.0.136", features = ["derive"] }
num-traits = "0.2.14"
num-derive = "0.3.3"
Expand Down
Loading

0 comments on commit 4dcb894

Please sign in to comment.