2c2efd83fd
The macOS build ofe2cd0b6(the NeedsBootstrap rocksdb/ fix) failed at the 'Bundle Tor into app' step with bash exit code 6 after exactly 30s of curl hanging against archive.torproject.org. All 4 Tor download sites (Windows Qt, Windows daemon, Linux Qt .deb, Linux daemon .deb, macOS Qt) used 'curl -sL' with no timeouts and no retries — a single transient network drop from Azure westus to the Tor archive killed the job. Fix at all 4 sites: * curl -fSL (HTTP error -> non-zero exit; fail loudly) * --connect-timeout 15 / --max-time 120 (per-attempt bounds) * --retry 3 --retry-delay 5 --retry-connrefused --retry-all-errors (covers 5xx, DNS timeouts, and connection refused) * 'set -euo pipefail' at script top so any failure aborts cleanly * PowerShell variants get a manual retry loop with size check (1MB minimum — a 0-byte '200 OK' response from a broken mirror used to silently slip through) Also bump CLIENT_VERSION_REVISION 1 -> 4 (v6.1.4) for the upcoming release that will includee2cd0b6(NeedsBootstrap rocksdb/ fix). Release notes: v6.1.4: Tor bundle download resilience (4 CI sites hardened) +e2cd0b6(NeedsBootstrap rocksdb/ chain state detection). Supersedes v6.1.3 only on CI reliability; no protocol/wallet/chain format changes.
Version Bump Script
Updates the version number across all files in the repo from a single command.
Usage
Set a specific version:
bash scripts/bump-version.sh 5.7.0
Or edit src/clientversion.h first, then sync everything else:
bash scripts/bump-version.sh
What it updates
src/clientversion.h(source of truth)src/version.htriangles-qt.proDockerfile- All packaging manifests (Docker, Snap, Scoop, WinGet, RPM, Flatpak, Debian, AppImage)
What still needs manual review after running
packaging/appstream/...metainfo.xml— add a new<release>entryREADME.md— update header version if desired- Any documentation with download URLs