Requesting each release provide a SHA output for the GitUp.zip file so users can validate the integrity of the release binaries.
An example is how openssl releases have SHA output files openssl-*.tar.gz.sha256 alongside the release files.
https://github.com/openssl/openssl/releases
Example generating SHA256 for GitUp release v1.4.2 using macOS builtin shasum
shasum -a 256 GitUp-v1.4.2.zip > GitUp-v1.4.2.zip.sha256
67b2612ef7aac75194b4fb77a27b2a06b031fccac56db71d9e358d362c2e3b25 GitUp-v1.4.2.zip
Example of macOS users verifying the SHA with the zip
shasum -a 256 -c GitUp-v1.4.2.zip.sha256
GitUp-v1.4.2.zip: OK
Requesting each release provide a SHA output for the
GitUp.zipfile so users can validate the integrity of the release binaries.An example is how
opensslreleases have SHA output filesopenssl-*.tar.gz.sha256alongside the release files.https://github.com/openssl/openssl/releases
Example generating SHA256 for GitUp release v1.4.2 using macOS builtin
shasumExample of macOS users verifying the SHA with the zip