Skip to content

Commit 33966cb

Browse files
Bump v4.1.11 (#722)
1 parent cb434a7 commit 33966cb

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@ operator COMMAND --flagA=123 --flagB=xyz
9898
Pull the latest docker Operator docker image:
9999

100100
```bash
101-
docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.10
101+
docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.11
102102
```
103103

104104
You can also build the docker image from source by cloning this repo and executing the following command from within
105105
the `v3-operator` folder:
106106

107107
```bash
108-
docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.10 .
108+
docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.11 .
109109
```
110110

111111
You will execute Operator Service commands using the format below (note the use of flags are optional):
@@ -114,7 +114,7 @@ You will execute Operator Service commands using the format below (note the use
114114
docker run --rm -ti \
115115
-u $(id -u):$(id -g) \
116116
-v ~/.stakewise/:/data \
117-
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.10 \
117+
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.11 \
118118
src/main.py COMMAND \
119119
--flagA=123 \
120120
--flagB=xyz

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "v3-operator"
3-
version = "v4.1.10"
3+
version = "v4.1.11"
44
description = "StakeWise operator service for registering vault validators"
55
authors = ["StakeWise Labs <info@stakewise.io>"]
66
package-mode = false

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ http_copy() {
288288
github_release() {
289289
owner_repo=$1
290290
version=$2
291-
test -z "$version" && version="v4.1.10"
291+
test -z "$version" && version="v4.1.11"
292292
giturl="https://github.com/${owner_repo}/releases/${version}"
293293
json=$(http_copy "$giturl" "Accept:application/json")
294294
test -z "$json" && return 1

0 commit comments

Comments
 (0)