diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 9b0bd26..c06f98b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -5,5 +5,6 @@ A huge thank you to all the people who have contributed to vet! This project wou ## Core Contributions & Ideas * **[@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. *(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 eb9ddd1..4c44e01 100755 --- a/vet +++ b/vet @@ -5,7 +5,7 @@ # SPDX-License-Identifier: MIT # # vet - A safer way to run remote scripts. -# Version: v1.0.0 +# Version: v1.0.1 # # 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.0" +readonly VERSION="v1.0.1" readonly CACHE_DIR="${HOME}/.cache/${APP_NAME}" if [ -t 1 ]; then