Skip to content

Commit 4e698c0

Browse files
authored
chore: release major versions of all crates (#240)
Release for FVM v4.5 and the updates to cid & multihash. - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected]
1 parent 82f3972 commit 4e698c0

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ anyhow = { version = "1.0.56" }
4040
multihash-codetable = { version = "0.1.4" }
4141

4242
# internal deps of published packages
43-
frc42_dispatch = { version = "7.0.0", path = "./frc42_dispatch", default-features = false }
44-
fvm_actor_utils = { version = "11.0.0", path = "./fvm_actor_utils" }
43+
frc42_dispatch = { version = "8.0.0", path = "./frc42_dispatch", default-features = false }
44+
fvm_actor_utils = { version = "12.0.0", path = "./fvm_actor_utils" }
4545

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

frc42_dispatch/Cargo.toml

+3-3
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 = "7.0.0"
4+
version = "8.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 = "5.0.0", path = "hasher" }
16-
frc42_macros = { version = "5.0.0", path = "macros" }
15+
frc42_hasher = { version = "6.0.0", path = "hasher" }
16+
frc42_macros = { version = "6.0.0", path = "macros" }
1717
thiserror = { version = "1.0.31" }
1818

1919
[features]

frc42_dispatch/hasher/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frc42_hasher"
3-
version = "5.0.0"
3+
version = "6.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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frc42_macros"
3-
version = "5.0.0"
3+
version = "6.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.0" }
14-
frc42_hasher = { version = "5.0.0", path = "../hasher", default-features = false }
14+
frc42_hasher = { version = "6.0.0", path = "../hasher", default-features = false }
1515
proc-macro2 = "1.0"
1616
quote = "1.0"
1717
syn = { version = "1.0", features = ["full"] }

frc42_dispatch/macros/example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2021"
55
publish = false
66

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

frc46_token/Cargo.toml

+1-1
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 = "11.0.0"
4+
version = "12.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

+1-1
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 = "5.0.0"
5+
version = "6.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

+1-1
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 = "11.0.0"
4+
version = "12.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fvm_dispatch_tools"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)