From 8c31980d421b31700561547ec81c737a70919133 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20B=C4=83ncioiu?= Date: Thu, 21 Sep 2023 13:39:39 +0300 Subject: [PATCH 1/3] Test with python 3.11, as well. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 24757526..8dd1900f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python-version: [3.8] + python-version: [3.8, 3.11] steps: - uses: actions/checkout@v2 From 7fb38c11888399f975748ec001e4b4e5840491ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20B=C4=83ncioiu?= Date: Thu, 21 Sep 2023 13:48:00 +0300 Subject: [PATCH 2/3] Fix tag for vmtools. --- multiversx_sdk_cli/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multiversx_sdk_cli/config.py b/multiversx_sdk_cli/config.py index 5f6bbe39..863e64f7 100644 --- a/multiversx_sdk_cli/config.py +++ b/multiversx_sdk_cli/config.py @@ -145,7 +145,7 @@ def _guard_valid_config_deletion(name: str): def get_defaults() -> Dict[str, Any]: return { - "dependencies.vmtools.tag": "1.4.60", + "dependencies.vmtools.tag": "v1.4.60", "dependencies.mx_sdk_rs.tag": "latest", "dependencies.vmtools.urlTemplate.linux": "https://github.com/multiversx/mx-chain-vm-go/archive/{TAG}.tar.gz", "dependencies.vmtools.urlTemplate.osx": "https://github.com/multiversx/mx-chain-vm-go/archive/{TAG}.tar.gz", From 4aaf7ab6d20e119481cf89792ac05203fe510ec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20B=C4=83ncioiu?= Date: Thu, 21 Sep 2023 13:49:42 +0300 Subject: [PATCH 3/3] Bump version. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 60739b90..b4476a0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "multiversx-sdk-cli" -version = "8.1.1" +version = "8.1.2" authors = [ { name="MultiversX" }, ]