Skip to content

Commit

Permalink
bump version numbers for fvm 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alexytsu committed Apr 5, 2023
1 parent 5176184 commit cf21ff9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion 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 = "3.1.0"
version = "3.2.0"
license = "MIT OR Apache-2.0"
keywords = ["filecoin", "dispatch", "frc-0042"]
repository = "https://github.com/helix-onchain/filecoin/"
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 = "1.4.0"
version = "1.5.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 = "1.1.0"
version = "1.2.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 = "1.4.0", path = "../hasher", features = ["no_sdk"] }
frc42_hasher = { version = "1.5.0", path = "../hasher", features = ["no_sdk"] }
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full"] }
Expand Down
6 changes: 3 additions & 3 deletions frc46_token/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "frc46_token"
description = "Filecoin FRC-0046 fungible token reference implementation"
version = "5.0.0"
version = "6.0.0"
license = "MIT OR Apache-2.0"
keywords = ["filecoin", "fvm", "token", "frc-0046"]
repository = "https://github.com/helix-onchain/filecoin/"
edition = "2021"

[dependencies]
frc42_dispatch = { version = "3.1.0", path = "../frc42_dispatch" }
fvm_actor_utils = { version = "5.0.0", path = "../fvm_actor_utils" }
frc42_dispatch = { version = "3.2.0", path = "../frc42_dispatch" }
fvm_actor_utils = { version = "6.0.0", path = "../fvm_actor_utils" }

anyhow = "1.0.56"
cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
Expand Down
4 changes: 2 additions & 2 deletions fvm_actor_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "fvm_actor_utils"
description = "Utils for authoring native actors for the Filecoin Virtual Machine"
version = "5.0.0"
version = "6.0.0"
license = "MIT OR Apache-2.0"
keywords = ["filecoin", "fvm"]
repository = "https://github.com/helix-onchain/filecoin/"
edition = "2021"

[dependencies]
frc42_dispatch = { version = "3.1.0", path = "../frc42_dispatch" }
frc42_dispatch = { version = "3.2.0", path = "../frc42_dispatch" }

anyhow = "1.0.56"
cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
Expand Down

0 comments on commit cf21ff9

Please sign in to comment.