From ea1dd19c5138390b1af4aef1bf5eb1ef5e842954 Mon Sep 17 00:00:00 2001 From: Artem Lykhvar Date: Fri, 25 Jul 2025 21:48:52 +0300 Subject: [PATCH] chore(release): prepare for v1.0.2 --- CONTRIBUTORS.md | 1 + vet | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index c06f98b..850d698 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -6,5 +6,6 @@ A huge thank you to all the people who have contributed to vet! This project wou * **[@smartwatermelon](https://github.com/smartwatermelon)** - Provided the initial concept and working formula for the Homebrew distribution, a key feature for macOS and Linux users. * **[@dbohdan](https://github.com/dbohdan)** - Fixed a critical bug in the change-detection logic. +* **[@dgl](https://github.com/dgl) - Hardened the script's review process against visual spoofing attacks by ensuring `less` displays raw control characters. *(If you have contributed to the project, please feel free to open a pull request to add your name!)* diff --git a/vet b/vet index 2b5e6a0..9158361 100755 --- a/vet +++ b/vet @@ -5,7 +5,7 @@ # SPDX-License-Identifier: MIT # # vet - A safer way to run remote scripts. -# Version: v1.0.1 +# Version: v1.0.2 # # This tool fetches a script, shows a diff against previous versions, # and asks for explicit confirmation before executing. @@ -13,7 +13,7 @@ set -euo pipefail readonly APP_NAME="vet" -readonly VERSION="v1.0.1" +readonly VERSION="v1.0.2" readonly CACHE_DIR="${HOME}/.cache/${APP_NAME}" if [ -t 1 ]; then