From 216a40735774f62f81a4f1614ec485b15b9eae7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20B=C4=83ncioiu?= Date: Wed, 28 Aug 2024 12:03:45 +0300 Subject: [PATCH] Fix CLI help / description (reproducible builds). --- multiversx_sdk_cli/cli_contracts.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/multiversx_sdk_cli/cli_contracts.py b/multiversx_sdk_cli/cli_contracts.py index c6eda82a..bb71299f 100644 --- a/multiversx_sdk_cli/cli_contracts.py +++ b/multiversx_sdk_cli/cli_contracts.py @@ -159,7 +159,7 @@ def setup_parser(args: List[str], subparsers: Any) -> Any: _add_build_options_args(sub) sub.add_argument("--docker-image", required=True, type=str, help="the docker image tag used to build the contract") - sub.add_argument("--contract", type=str, help="relative path of the contract in the project") + sub.add_argument("--contract", type=str, help="contract to build (contract name, as found in Cargo.toml)") sub.add_argument("--no-docker-interactive", action="store_true", default=False) sub.add_argument("--no-docker-tty", action="store_true", default=False) sub.add_argument("--no-default-platform", action="store_true", default=False, diff --git a/pyproject.toml b/pyproject.toml index 6cd6a16d..e9accd28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "multiversx-sdk-cli" -version = "9.6.1" +version = "9.6.2" authors = [ { name="MultiversX" }, ]