From d55c8a8487394a1fc092a1febaa44b5b0bea1f5b Mon Sep 17 00:00:00 2001 From: 0xOzgur <29779769+0xOzgur@users.noreply.github.com> Date: Sat, 29 Jun 2024 12:26:36 +0300 Subject: [PATCH] v1.4.20.1 Update --- README.md | 4 ++-- install/Install_prerequisites.sh | 2 +- install/install_docker.sh | 2 +- install/install_quilibrium_service.sh | 2 +- profile/.bash_profile | 8 ++++---- profile/.profile | 6 +++--- quilibrium_for_dummies.sh | 2 +- update/update.sh | 2 +- update/updateDocker.sh | 6 +++--- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index adf99ed..1bcfe85 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,14 @@ After first run, when you need to reach your node, you need to run only; **Autoinstaller Script for Quilibrium as a Service** -Use below command to install v1.4.20 +Use below command to install v1.4.20.1 wget -O - https://raw.githubusercontent.com/0xOzgur/QuilibriumTools/main/install/install_quilibrium_service.sh | bash **Autoupdater** -If you need to update your node from previous version to 1.4.20, apply below command +If you need to update your node from previous version to 1.4.20.1, apply below command wget -O - https://raw.githubusercontent.com/0xOzgur/QuilibriumTools/main/update/update.sh | bash diff --git a/install/Install_prerequisites.sh b/install/Install_prerequisites.sh index a15da93..0611f36 100644 --- a/install/Install_prerequisites.sh +++ b/install/Install_prerequisites.sh @@ -1,7 +1,7 @@ #!/bin/bash # Set the version number -VERSION="1.4.20" +VERSION="1.4.20.1" # Determine the ExecStart line based on the architecture ARCH=$(uname -m) diff --git a/install/install_docker.sh b/install/install_docker.sh index 9b79d17..1d16b4d 100644 --- a/install/install_docker.sh +++ b/install/install_docker.sh @@ -60,7 +60,7 @@ git checkout release-cdn # Step 7:Build Docker Container echo "⏳Building Ceremonyclient Container" sleep 2 # Add a 2-second delay -docker build --build-arg GIT_COMMIT=$(git log -1 --format=%h) -t quilibrium:1.4.20 .1.4.20 +docker build --build-arg GIT_COMMIT=$(git log -1 --format=%h) -t quilibrium:1.4.20.1 .1.4.20.1 # Step 8:Run Ceremonyclient Container echo "✅Running Ceremonyclient Container" diff --git a/install/install_quilibrium_service.sh b/install/install_quilibrium_service.sh index 7d48f50..eadfbc1 100644 --- a/install/install_quilibrium_service.sh +++ b/install/install_quilibrium_service.sh @@ -1,6 +1,6 @@ #!/bin/bash # Set the version number -VERSION="1.4.20" +VERSION="1.4.20.1" cd ~ # Step 0: Welcome echo "This script is made with ❤️ by 0xOzgur.eth @ https://quilibrium.space " diff --git a/profile/.bash_profile b/profile/.bash_profile index 76d7980..d7e6d3c 100644 --- a/profile/.bash_profile +++ b/profile/.bash_profile @@ -28,15 +28,15 @@ OS=$(uname -s) # Determine the node binary name based on the architecture and OS if [ "$ARCH" = "x86_64" ]; then if [ "$OS" = "Linux" ]; then - NODE_BINARY='node-1.4.20-linux-amd64' + NODE_BINARY='node-1.4.20.1-linux-amd64' elif [ "$OS" = "Darwin" ]; then - NODE_BINARY='node-1.4.20-darwin-amd64' + NODE_BINARY='node-1.4.20.1-darwin-amd64' fi elif [ "$ARCH" = "aarch64" ]; then if [ "$OS" = "Linux" ]; then - NODE_BINARY='node-1.4.20-linux-arm64' + NODE_BINARY='node-1.4.20.1-linux-arm64' elif [ "$OS" = "Darwin" ]; then - NODE_BINARY='node-1.4.20-darwin-arm64' + NODE_BINARY='node-1.4.20.1-darwin-arm64' fi fi diff --git a/profile/.profile b/profile/.profile index b5450b4..bf1a328 100644 --- a/profile/.profile +++ b/profile/.profile @@ -28,9 +28,9 @@ alias drestart='cd ~/ceremonyclient/ && docker compose down && docker compose up alias dstop='cd ~/ceremonyclient/ && docker compose down && cd ~' # Shortcuts for Service alias peer-count="cd ~/ceremonyclient/node && grpcurl -plaintext -max-msg-sz 150000000 localhost:8337 quilibrium.node.node.pb.NodeService.GetPeerManifests | grep peerId | wc -l && cd ~" -alias node-info="cd ~/ceremonyclient/node && ./node-1.4.20-linux-amd64 -node-info && cd ~" -alias db-console="cd ~/ceremonyclient/node && ./node-1.4.20-linux-amd64 --db-console && cd ~" -alias balance="cd ~/ceremonyclient/node && ./node-1.4.20-linux-amd64 -balance && cd ~" +alias node-info="cd ~/ceremonyclient/node && ./node-1.4.20.1-linux-amd64 -node-info && cd ~" +alias db-console="cd ~/ceremonyclient/node && ./node-1.4.20.1-linux-amd64 --db-console && cd ~" +alias balance="cd ~/ceremonyclient/node && ./node-1.4.20.1-linux-amd64 -balance && cd ~" alias nlog="sudo journalctl -u ceremonyclient.service -f --no-hostname -o cat" alias increment="sudo journalctl -u ceremonyclient.service -f --no-hostname -o cat | grep time_taken" alias nstart="service ceremonyclient start" diff --git a/quilibrium_for_dummies.sh b/quilibrium_for_dummies.sh index fb98290..2b54081 100644 --- a/quilibrium_for_dummies.sh +++ b/quilibrium_for_dummies.sh @@ -6,7 +6,7 @@ source ~/.bashrc clear # Set the version number -VERSION="1.4.20" +VERSION="1.4.20.1" # Determine the ExecStart line based on the architecture ARCH=$(uname -m) diff --git a/update/update.sh b/update/update.sh index 3bb722b..dbe087f 100644 --- a/update/update.sh +++ b/update/update.sh @@ -1,5 +1,5 @@ #!/bin/bash -VERSION="1.4.20" +VERSION="1.4.20.1" # Step 0: Welcome echo "This script is made with ❤️ by 0xOzgur.eth @ https://quilibrium.space" echo "⏳Enjoy and sit back while you are upgrading your Quilibrium Node to v$VERSION!" diff --git a/update/updateDocker.sh b/update/updateDocker.sh index 68652cb..621213c 100644 --- a/update/updateDocker.sh +++ b/update/updateDocker.sh @@ -2,7 +2,7 @@ # Step 0: Welcome echo "This script is made with ❤️ by 0xOzgur.eth" -echo "⏳Enjoy and sit back while you are upgrading your Quilibrium Node to v1.4.20!" +echo "⏳Enjoy and sit back while you are upgrading your Quilibrium Node to v1.4.20.1!" echo "⏳Processing..." sleep 10 # Add a 10-second delay @@ -10,7 +10,7 @@ sleep 10 # Add a 10-second delay service ceremonyclient stop # Step 1:Download Binary -echo "⏳ Downloading New Release v1.4.20" +echo "⏳ Downloading New Release v1.4.20.1" cd ~/ceremonyclient git pull git checkout release-cdn @@ -18,7 +18,7 @@ git checkout release-cdn # Step 7:Build Docker Container echo "⏳Building Ceremonyclient Container" sleep 2 # Add a 2-second delay -docker build --build-arg GIT_COMMIT=$(git log -1 --format=%h) -t quilibrium -t quilibrium:1.4.20 . +docker build --build-arg GIT_COMMIT=$(git log -1 --format=%h) -t quilibrium -t quilibrium:1.4.20.1 . # Step 8:Run Ceremonyclient Container echo "✅Running Ceremonyclient Container"