Skip to content

Commit 4dcb894

Browse files
committed
Merge branch 'release/v11' into next
2 parents 3dcb014 + cd9ac2b commit 4dcb894

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1503
-797
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ jobs:
1919
network: [ 'mainnet', 'caterpillarnet', 'butterflynet', 'calibrationnet', 'devnet', 'testing', 'testing-fake-proofs', 'wallaby', 'hyperspace', 'devnet-wasm' ]
2020
steps:
2121
- name: Checking out
22-
uses: actions/checkout@v2
23-
- name: Install Rust toolchain
24-
uses: ./.github/actions/rust-cargo-run
25-
with:
26-
github_token: ${{ secrets.GITHUB_TOKEN }}
27-
command: version
22+
uses: actions/checkout@v3
23+
- name: Setting up cache
24+
uses: pl-strflt/rust-sccache-action@v1
25+
env:
26+
SCCACHE_CACHE_SIZE: 2G
27+
SCCACHE_DIR: ${{ github.workspace }}/.cache/sccache
28+
CACHE_SKIP_SAVE: true
2829
- name: Writing bundle
2930
env:
3031
BUILD_FIL_NETWORK: ${{ matrix.network }}

Cargo.lock

Lines changed: 35 additions & 39 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 = "11.0.0-alpha.1"
4+
version = "11.0.0"
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 = "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"] }
16+
fil_actor_account = { version = "11.0.0", path = "./actors/account", features = ["fil-actor"] }
17+
fil_actor_cron = { version = "11.0.0", path = "./actors/cron", features = ["fil-actor"] }
18+
fil_actor_datacap = { version = "11.0.0", path = "./actors/datacap", features = ["fil-actor"] }
19+
fil_actor_ethaccount = { version = "11.0.0", path = "actors/ethaccount", features = ["fil-actor"] }
20+
fil_actor_eam = { version = "11.0.0", path = "./actors/eam", features = ["fil-actor"] }
21+
fil_actor_evm = { version = "11.0.0", path = "./actors/evm", features = ["fil-actor"] }
22+
fil_actor_init = { version = "11.0.0", path = "./actors/init", features = ["fil-actor"] }
23+
fil_actor_market = { version = "11.0.0", path = "./actors/market", features = ["fil-actor"] }
24+
fil_actor_miner = { version = "11.0.0", path = "./actors/miner", features = ["fil-actor"] }
25+
fil_actor_multisig = { version = "11.0.0", path = "./actors/multisig", features = ["fil-actor"] }
26+
fil_actor_paych = { version = "11.0.0", path = "./actors/paych", features = ["fil-actor"] }
27+
fil_actor_placeholder = { version = "11.0.0", path = "./actors/placeholder", features = ["fil-actor"] }
28+
fil_actor_power = { version = "11.0.0", path = "./actors/power", features = ["fil-actor"] }
29+
fil_actor_reward = { version = "11.0.0", path = "./actors/reward", features = ["fil-actor"] }
30+
fil_actor_system = { version = "11.0.0", path = "./actors/system", features = ["fil-actor"] }
31+
fil_actor_verifreg = { version = "11.0.0", 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 = "11.0.0-alpha.1", path = "runtime" }
36+
fil_actors_runtime = { version = "11.0.0", path = "runtime" }
3737
num-traits = "0.2.15"
3838

3939
[dependencies]

actors/account/Cargo.toml

Lines changed: 5 additions & 5 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 = "11.0.0-alpha.1"
4+
version = "11.0.0"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"
@@ -13,10 +13,10 @@ keywords = ["filecoin", "web3", "wasm"]
1313
crate-type = ["cdylib", "lib"]
1414

1515
[dependencies]
16-
fil_actors_runtime = { version = "11.0.0-alpha.1", path = "../../runtime" }
17-
frc42_dispatch = "3.1.0"
18-
fvm_actor_utils = "5.0.0"
19-
fvm_shared = { version = "3.0.0", default-features = false }
16+
fil_actors_runtime = { version = "11.0.0", path = "../../runtime" }
17+
frc42_dispatch = "3.2.0"
18+
fvm_actor_utils = "6.0.0"
19+
fvm_shared = { version = "3.2.0", default-features = false }
2020
serde = { version = "1.0.136", features = ["derive"] }
2121
num-traits = "0.2.14"
2222
num-derive = "0.3.3"

0 commit comments

Comments
 (0)