Skip to content

Commit

Permalink
chore: release frc42_dispatch and friends
Browse files Browse the repository at this point in the history
Release:

- frc42_dispatch v7.1.0
- frc42_hasher v5.1.0
- frc42_macros v5.1.0

These new versions support FVM v4.3 _and_ v4.4.
  • Loading branch information
Stebalien committed Jan 17, 2025
1 parent 920196a commit 006499c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ num-traits = { version = "0.2.15" }
anyhow = { version = "1.0.56" }

# internal deps of published packages
frc42_dispatch = { version = "7.0.0", path = "./frc42_dispatch", default-features = false }
frc42_dispatch = { version = "7.1.0", path = "./frc42_dispatch", default-features = false }
fvm_actor_utils = { version = "11.0.0", path = "./fvm_actor_utils" }

# only consumed by non-published packages
Expand Down
6 changes: 3 additions & 3 deletions frc42_dispatch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "frc42_dispatch"
description = "Filecoin FRC-0042 calling convention/dispatch support library"
version = "7.0.0"
version = "7.1.0"
license = "MIT OR Apache-2.0"
keywords = ["filecoin", "dispatch", "frc-0042"]
repository = "https://github.com/helix-onchain/filecoin/"
Expand All @@ -12,8 +12,8 @@ edition = "2021"
fvm_ipld_encoding = { workspace = true }
fvm_sdk = { workspace = true, optional = true }
fvm_shared = { workspace = true }
frc42_hasher = { version = "5.0.0", path = "hasher" }
frc42_macros = { version = "5.0.0", path = "macros" }
frc42_hasher = { version = "5.1.0", path = "hasher" }
frc42_macros = { version = "5.1.0", path = "macros" }
thiserror = { version = "1.0.31" }

[features]
Expand Down
2 changes: 1 addition & 1 deletion frc42_dispatch/hasher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frc42_hasher"
version = "5.0.0"
version = "5.1.0"
license = "MIT OR Apache-2.0"
description = "Filecoin FRC-0042 calling convention method hashing"
repository = "https://github.com/helix-onchain/filecoin/"
Expand Down
4 changes: 2 additions & 2 deletions frc42_dispatch/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frc42_macros"
version = "5.0.0"
version = "5.1.0"
license = "MIT OR Apache-2.0"
description = "Filecoin FRC-0042 calling convention procedural macros"
repository = "https://github.com/helix-onchain/filecoin/"
Expand All @@ -11,7 +11,7 @@ proc-macro = true

[dependencies]
blake2b_simd = { version = "1.0.0" }
frc42_hasher = { version = "5.0.0", path = "../hasher", default-features = false }
frc42_hasher = { version = "5.1.0", path = "../hasher", default-features = false }
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion frc42_dispatch/macros/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2021"
publish = false

[dependencies]
frc42_macros = { version = "5.0.0", path = ".." }
frc42_macros = { version = "5.1.0", path = ".." }

0 comments on commit 006499c

Please sign in to comment.