From 4a3989fcece28e04c143e9446efc966d623e0b7f Mon Sep 17 00:00:00 2001 From: Evgeny Gusarov Date: Tue, 12 Nov 2024 14:03:53 +0300 Subject: [PATCH] Bump version v2.1.4 --- README.md | 8 ++++---- pyproject.toml | 2 +- scripts/install.sh | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 26d11537..3e705385 100644 --- a/README.md +++ b/README.md @@ -154,14 +154,14 @@ Head to [Usage](#usage) to launch your operator service. Pull the latest docker operator docker image: ```bash -docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.3 +docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.4 ``` You can also build the docker image from source by cloning this repo and executing the following command from within the `v3-operator` folder: ```bash -docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.3 . +docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.4 . ``` You will execute Operator Service commands using the format below (note the use of flags are optional): @@ -170,7 +170,7 @@ You will execute Operator Service commands using the format below (note the use docker run --rm -ti \ -u $(id -u):$(id -g) \ -v ~/.stakewise/:/data \ -europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.3 \ +europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.4 \ src/main.py COMMAND \ --flagA=123 \ --flagB=xyz @@ -393,7 +393,7 @@ below: docker run --restart on-failure:10 \ -u $(id -u):$(id -g) \ -v ~/.stakewise/:/data \ -europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.3 \ +europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.4 \ src/main.py start \ --vault=0x3320ad928c20187602a2b2c04eeaa813fa899468 \ --data-dir=/data \ diff --git a/pyproject.toml b/pyproject.toml index 24d8d27e..a8b30e25 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "v3-operator" -version = "v2.1.3" +version = "v2.1.4" description = "StakeWise operator service for registering vault validators" authors = ["StakeWise Labs "] package-mode = false diff --git a/scripts/install.sh b/scripts/install.sh index 07cdc213..29a8b320 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -281,7 +281,7 @@ http_copy() { github_release() { owner_repo=$1 version=$2 - test -z "$version" && version="v2.1.3" + test -z "$version" && version="v2.1.4" giturl="https://github.com/${owner_repo}/releases/${version}" json=$(http_copy "$giturl" "Accept:application/json") test -z "$json" && return 1