Upgrade to Aztec 1.2.0
New Version Available!
Version 1.2.0 is now live with bug fixes and slashing feature ✂️
Quick Upgrade (3 Steps)
If you use Docker:
# 1. Stop your node
docker-compose down
# 2. Get latest version
docker-compose pull
# 3. Start your node
docker-compose up -d
Done! ✅ Your node is now v1.2.0
CLI:
# 1. Stop your node
sudo systemctl stop aztec-node
# 2. Download and extract barretenberg (choose your platform)
# For Linux AMD64:
wget https://github.com/AztecProtocol/aztec-packages/releases/download/v1.2.0/barretenberg-amd64-linux.tar.gz
tar -xzf barretenberg-amd64-linux.tar.gz
# For Linux ARM64:
# wget https://github.com/AztecProtocol/aztec-packages/releases/download/v1.2.0/barretenberg-arm64-linux.tar.gz
# tar -xzf barretenberg-arm64-linux.tar.gz
sudo mv aztec-node /usr/local/bin/
# 3. Start your node
sudo systemctl start aztec-node
Done! ✅ Your node is now v1.2.0
Check It's Working
# Check version
aztec-node --version
# Should show: v1.2.0
# Check if running
docker-compose logs -f aztec-node
# OR
sudo systemctl status aztec-node