Skip to content

Commit 962fa9d

Browse files
authored
chore: release for fvm v4.7.0 (#252)
- `frc42_dispatch@v10.0.0` - `frc42_macros@v8.0.0` - `frc42_hasher@v8.0.0` - `frc46_token@v14.0.0` - `frc53_nft@v8.0.0` - `fvm_actor_utils@v14.0.0` - `fvm_dispatch_tools@v1.0.0`
1 parent 026d723 commit 962fa9d

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ anyhow = { version = "1.0.98" }
3939
multihash-codetable = { version = "0.1.4", default-features = false }
4040

4141
# internal deps of published packages
42-
frc42_dispatch = { version = "9.0.0", path = "./frc42_dispatch", default-features = false }
43-
fvm_actor_utils = { version = "13.0.0", path = "./fvm_actor_utils" }
42+
frc42_dispatch = { version = "10.0.0", path = "./frc42_dispatch", default-features = false }
43+
fvm_actor_utils = { version = "14.0.0", path = "./fvm_actor_utils" }
4444

4545
# only consumed by non-published packages
4646
frc53_nft = { path = "./frc53_nft" }

frc42_dispatch/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "frc42_dispatch"
33
description = "Filecoin FRC-0042 calling convention/dispatch support library"
4-
version = "9.0.0"
4+
version = "10.0.0"
55
license = "MIT OR Apache-2.0"
66
keywords = ["filecoin", "dispatch", "frc-0042"]
77
repository = "https://github.com/helix-onchain/filecoin/"
@@ -12,8 +12,8 @@ edition = "2021"
1212
fvm_ipld_encoding = { workspace = true }
1313
fvm_sdk = { workspace = true, optional = true }
1414
fvm_shared = { workspace = true }
15-
frc42_hasher = { version = "7.0.0", path = "hasher" }
16-
frc42_macros = { version = "7.0.0", path = "macros" }
15+
frc42_hasher = { version = "8.0.0", path = "hasher" }
16+
frc42_macros = { version = "8.0.0", path = "macros" }
1717
thiserror = { version = "2.0.12" }
1818

1919
[features]

frc42_dispatch/hasher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frc42_hasher"
3-
version = "7.0.0"
3+
version = "8.0.0"
44
license = "MIT OR Apache-2.0"
55
description = "Filecoin FRC-0042 calling convention method hashing"
66
repository = "https://github.com/helix-onchain/filecoin/"

frc42_dispatch/macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frc42_macros"
3-
version = "7.0.0"
3+
version = "8.0.0"
44
license = "MIT OR Apache-2.0"
55
description = "Filecoin FRC-0042 calling convention procedural macros"
66
repository = "https://github.com/helix-onchain/filecoin/"
@@ -11,7 +11,7 @@ proc-macro = true
1111

1212
[dependencies]
1313
blake2b_simd = { version = "1.0.3" }
14-
frc42_hasher = { version = "7.0.0", path = "../hasher", default-features = false }
14+
frc42_hasher = { version = "8.0.0", path = "../hasher", default-features = false }
1515
proc-macro2 = "1.0"
1616
quote = "1.0"
1717
syn = { version = "2.0", features = ["full"] }

frc42_dispatch/macros/example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
frc42_macros = { version = "7.0.0", path = ".." }
8+
frc42_macros = { version = "8.0.0", path = ".." }

frc46_token/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "frc46_token"
33
description = "Filecoin FRC-0046 fungible token reference implementation"
4-
version = "13.0.0"
4+
version = "14.0.0"
55
license = "MIT OR Apache-2.0"
66
keywords = ["filecoin", "fvm", "token", "frc-0046"]
77
repository = "https://github.com/helix-onchain/filecoin/"

frc53_nft/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[package]
33
name = "frc53_nft"
44
description = "Filecoin FRC-0053 non-fungible token reference implementation"
5-
version = "7.0.0"
5+
version = "8.0.0"
66
license = "MIT OR Apache-2.0"
77
keywords = ["filecoin", "fvm", "token", "nft", "frc-0053"]
88
repository = "https://github.com/helix-onchain/filecoin/"

fvm_actor_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fvm_actor_utils"
33
description = "Utils for authoring native actors for the Filecoin Virtual Machine"
4-
version = "13.0.0"
4+
version = "14.0.0"
55
license = "MIT OR Apache-2.0"
66
keywords = ["filecoin", "fvm"]
77
repository = "https://github.com/helix-onchain/filecoin/"

fvm_dispatch_tools/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fvm_dispatch_tools"
3-
version = "0.5.0"
3+
version = "1.0.0"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)