From 591c6c7dfd2c327626cda392c5aacaf2ee0587e7 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Wed, 6 Sep 2023 15:20:12 -0700 Subject: [PATCH] chore: release crates for FVM update 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 --- Cargo.toml | 4 ++-- dispatch_examples/greeter/Cargo.toml | 1 + frc42_dispatch/Cargo.toml | 2 +- frc42_dispatch/hasher/Cargo.toml | 2 +- frc46_token/Cargo.toml | 2 +- frc53_nft/Cargo.toml | 2 +- fvm_actor_utils/Cargo.toml | 2 +- testing/integration/Cargo.toml | 1 + testing/test_actors/actors/basic_nft_actor/Cargo.toml | 1 + testing/test_actors/actors/basic_receiving_actor/Cargo.toml | 1 + testing/test_actors/actors/basic_token_actor/Cargo.toml | 1 + testing/test_actors/actors/basic_transfer_actor/Cargo.toml | 1 + testing/test_actors/actors/frc46_factory_token/Cargo.toml | 3 ++- testing/test_actors/actors/frc46_test_actor/Cargo.toml | 1 + testing/test_actors/actors/frc53_test_actor/Cargo.toml | 1 + 15 files changed, 17 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 46f0370c..983e2aa5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/dispatch_examples/greeter/Cargo.toml b/dispatch_examples/greeter/Cargo.toml index a248d1cd..f24602d6 100644 --- a/dispatch_examples/greeter/Cargo.toml +++ b/dispatch_examples/greeter/Cargo.toml @@ -2,6 +2,7 @@ name = "greeter" version = "0.1.0" edition = "2021" +publish = false [dependencies] frc42_dispatch = { workspace = true } diff --git a/frc42_dispatch/Cargo.toml b/frc42_dispatch/Cargo.toml index ac2898cc..fa66a28d 100644 --- a/frc42_dispatch/Cargo.toml +++ b/frc42_dispatch/Cargo.toml @@ -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/" diff --git a/frc42_dispatch/hasher/Cargo.toml b/frc42_dispatch/hasher/Cargo.toml index f63fea72..c036fb93 100644 --- a/frc42_dispatch/hasher/Cargo.toml +++ b/frc42_dispatch/hasher/Cargo.toml @@ -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/" diff --git a/frc46_token/Cargo.toml b/frc46_token/Cargo.toml index 2484142a..d50218ea 100644 --- a/frc46_token/Cargo.toml +++ b/frc46_token/Cargo.toml @@ -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/" diff --git a/frc53_nft/Cargo.toml b/frc53_nft/Cargo.toml index a400c713..94408c71 100644 --- a/frc53_nft/Cargo.toml +++ b/frc53_nft/Cargo.toml @@ -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/" diff --git a/fvm_actor_utils/Cargo.toml b/fvm_actor_utils/Cargo.toml index b1641cf1..5a86adc5 100644 --- a/fvm_actor_utils/Cargo.toml +++ b/fvm_actor_utils/Cargo.toml @@ -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/" diff --git a/testing/integration/Cargo.toml b/testing/integration/Cargo.toml index d23223dc..940cd019 100644 --- a/testing/integration/Cargo.toml +++ b/testing/integration/Cargo.toml @@ -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 } diff --git a/testing/test_actors/actors/basic_nft_actor/Cargo.toml b/testing/test_actors/actors/basic_nft_actor/Cargo.toml index 33ecf947..de8b0bb3 100644 --- a/testing/test_actors/actors/basic_nft_actor/Cargo.toml +++ b/testing/test_actors/actors/basic_nft_actor/Cargo.toml @@ -2,6 +2,7 @@ name = "basic_nft_actor" version = "0.1.0" edition = "2021" +publish = false [dependencies] frc42_dispatch = { workspace = true } diff --git a/testing/test_actors/actors/basic_receiving_actor/Cargo.toml b/testing/test_actors/actors/basic_receiving_actor/Cargo.toml index 5f4b9e2a..04ba12ab 100644 --- a/testing/test_actors/actors/basic_receiving_actor/Cargo.toml +++ b/testing/test_actors/actors/basic_receiving_actor/Cargo.toml @@ -2,6 +2,7 @@ name = "basic_receiving_actor" version = "0.1.0" edition = "2021" +publish = false [dependencies] frc42_dispatch = { workspace = true } diff --git a/testing/test_actors/actors/basic_token_actor/Cargo.toml b/testing/test_actors/actors/basic_token_actor/Cargo.toml index 5a366ced..662a4a93 100644 --- a/testing/test_actors/actors/basic_token_actor/Cargo.toml +++ b/testing/test_actors/actors/basic_token_actor/Cargo.toml @@ -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" } diff --git a/testing/test_actors/actors/basic_transfer_actor/Cargo.toml b/testing/test_actors/actors/basic_transfer_actor/Cargo.toml index 182cde6d..fac833c7 100644 --- a/testing/test_actors/actors/basic_transfer_actor/Cargo.toml +++ b/testing/test_actors/actors/basic_transfer_actor/Cargo.toml @@ -2,6 +2,7 @@ name = "basic_transfer_actor" version = "0.1.0" edition = "2021" +publish = false [dependencies] frc42_dispatch = { workspace = true } diff --git a/testing/test_actors/actors/frc46_factory_token/Cargo.toml b/testing/test_actors/actors/frc46_factory_token/Cargo.toml index 22de2231..89710706 100644 --- a/testing/test_actors/actors/frc46_factory_token/Cargo.toml +++ b/testing/test_actors/actors/frc46_factory_token/Cargo.toml @@ -2,6 +2,7 @@ name = "frc46_factory_token" version = "0.1.0" edition = "2021" +publish = false [dependencies] cid = { workspace = true } @@ -18,4 +19,4 @@ thiserror = { workspace = true } token_impl = { path = "token_impl" } [lib] -crate-type = ["cdylib"] ## cdylib is necessary for Wasm build \ No newline at end of file +crate-type = ["cdylib"] ## cdylib is necessary for Wasm build diff --git a/testing/test_actors/actors/frc46_test_actor/Cargo.toml b/testing/test_actors/actors/frc46_test_actor/Cargo.toml index f23ebe2c..aeeddf90 100644 --- a/testing/test_actors/actors/frc46_test_actor/Cargo.toml +++ b/testing/test_actors/actors/frc46_test_actor/Cargo.toml @@ -2,6 +2,7 @@ name = "frc46_test_actor" version = "0.1.0" edition = "2021" +publish = false [dependencies] frc46_token = { workspace = true } diff --git a/testing/test_actors/actors/frc53_test_actor/Cargo.toml b/testing/test_actors/actors/frc53_test_actor/Cargo.toml index a48e360b..b1242a1a 100644 --- a/testing/test_actors/actors/frc53_test_actor/Cargo.toml +++ b/testing/test_actors/actors/frc53_test_actor/Cargo.toml @@ -2,6 +2,7 @@ name = "frc53_test_actor" version = "0.1.0" edition = "2021" +publish = false [dependencies] frc46_token = { workspace = true }