diff --git a/README.md b/README.md index a90a2ff4..38a81257 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ If you do not have [`go 1.22+`](https://go.dev/doc/install), [`Docker`](https:// ```bash # Download the the Spawn repository -git clone https://github.com/rollchains/spawn.git --depth=1 --branch v0.50.10 +git clone https://github.com/rollchains/spawn.git --depth=1 --branch v0.50.11 cd spawn # Install Spawn diff --git a/docs/versioned_docs/version-v0.50.x/01-setup/02-install-spawn.md b/docs/versioned_docs/version-v0.50.x/01-setup/02-install-spawn.md index b31868a7..456e5108 100644 --- a/docs/versioned_docs/version-v0.50.x/01-setup/02-install-spawn.md +++ b/docs/versioned_docs/version-v0.50.x/01-setup/02-install-spawn.md @@ -19,7 +19,7 @@ Install Spawn from source. ```bash # Install from latest source -git clone https://github.com/rollchains/spawn.git --depth 1 --branch v0.50.10 +git clone https://github.com/rollchains/spawn.git --depth 1 --branch v0.50.11 # Change to this directory cd spawn diff --git a/install.sh b/install.sh index 745be31c..9f9d6fca 100644 --- a/install.sh +++ b/install.sh @@ -3,7 +3,7 @@ # curl -sSL https://raw.githubusercontent.com/rollchains/spawn/release/v0.50/install.sh | bash # -VERSION=${1:-"v0.50.10"} +VERSION=${1:-"v0.50.11"} BASE_URL="https://github.com/rollchains/spawn/releases/download/$VERSION" ARCH=$(uname -m) diff --git a/scripts/bump_docs.sh b/scripts/bump_docs.sh index e1880e89..1926312b 100644 --- a/scripts/bump_docs.sh +++ b/scripts/bump_docs.sh @@ -1,7 +1,7 @@ # bumps docs versions for spawn -OLD_VERSION=v0.50.9 -NEW_VERSION=v0.50.10 +OLD_VERSION=v0.50.10 +NEW_VERSION=v0.50.11 findAndReplace() { find . -type f -name "$1" -not -path "*node_modules*" -exec sed -i "$2" {} \;