Skip to content

Commit

Permalink
chore: release crates for FVM update
Browse files Browse the repository at this point in the history
I've also marked some test crates as "don't publish" to make it easier
to see what needs to be released.

This patch releases:

- frc42_dispatch 3.4
- frc42_hasher 1.7
- frc46_token 7.1
- frc53_nft 1.1
- fvm_actor_utils 7.1
  • Loading branch information
Stebalien committed Sep 6, 2023
1 parent 6e98ccd commit 591c6c7
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ num-traits = { version = "0.2.15" }
anyhow = { version = "1.0.56" }

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

# only consumed by non-published packages
frc53_nft = { path = "./frc53_nft" }
Expand Down
1 change: 1 addition & 0 deletions dispatch_examples/greeter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "greeter"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
frc42_dispatch = { workspace = true }
Expand Down
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.3.0"
version = "3.4.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.6.0"
version = "1.7.0"
license = "MIT OR Apache-2.0"
description = "Filecoin FRC-0042 calling convention method hashing"
repository = "https://github.com/helix-onchain/filecoin/"
Expand Down
2 changes: 1 addition & 1 deletion frc46_token/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "frc46_token"
description = "Filecoin FRC-0046 fungible token reference implementation"
version = "7.0.0"
version = "7.1.0"
license = "MIT OR Apache-2.0"
keywords = ["filecoin", "fvm", "token", "frc-0046"]
repository = "https://github.com/helix-onchain/filecoin/"
Expand Down
2 changes: 1 addition & 1 deletion frc53_nft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[package]
name = "frc53_nft"
description = "Filecoin FRC-0053 non-fungible token reference implementation"
version = "1.0.0"
version = "1.1.0"
license = "MIT OR Apache-2.0"
keywords = ["filecoin", "fvm", "token", "nft", "frc-0053"]
repository = "https://github.com/helix-onchain/filecoin/"
Expand Down
2 changes: 1 addition & 1 deletion fvm_actor_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_actor_utils"
description = "Utils for authoring native actors for the Filecoin Virtual Machine"
version = "7.0.0"
version = "7.1.0"
license = "MIT OR Apache-2.0"
keywords = ["filecoin", "fvm"]
repository = "https://github.com/helix-onchain/filecoin/"
Expand Down
1 change: 1 addition & 0 deletions testing/integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "helix_integration_tests"
version = "0.1.0"
repository = "https://github.com/helix-collective/filecoin"
edition = "2021"
publish = false

[dependencies]
frc42_dispatch = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions testing/test_actors/actors/basic_nft_actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "basic_nft_actor"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
frc42_dispatch = { workspace = true }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "basic_receiving_actor"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
frc42_dispatch = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions testing/test_actors/actors/basic_token_actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "basic_token_actor"
version = "0.1.0"
repository = "https://github.com/helix-collective/filecoin"
edition = "2021"
publish = false

[dependencies]
frc46_token = { path = "../../../../frc46_token" }
Expand Down
1 change: 1 addition & 0 deletions testing/test_actors/actors/basic_transfer_actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "basic_transfer_actor"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
frc42_dispatch = { workspace = true }
Expand Down
3 changes: 2 additions & 1 deletion testing/test_actors/actors/frc46_factory_token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "frc46_factory_token"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
cid = { workspace = true }
Expand All @@ -18,4 +19,4 @@ thiserror = { workspace = true }
token_impl = { path = "token_impl" }

[lib]
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
1 change: 1 addition & 0 deletions testing/test_actors/actors/frc46_test_actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "frc46_test_actor"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
frc46_token = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions testing/test_actors/actors/frc53_test_actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "frc53_test_actor"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
frc46_token = { workspace = true }
Expand Down

0 comments on commit 591c6c7

Please sign in to comment.