From 1fac96ae5a13a595b009462da802ad7d8143ed8e Mon Sep 17 00:00:00 2001 From: Kevin Goslar Date: Fri, 24 Jan 2025 19:37:35 -0600 Subject: [PATCH] v0.10.4 (#389) --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- docs/RELEASE.md | 4 ++-- download.ps1 | 2 +- download.sh | 2 +- 7 files changed, 26 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa124afb..0ac9aa96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # run-that-app changelog +### 0.10.4 (2025-01-24) + +Lots of bug fixes, especially around running on Windows. + +#### Bug Fixes + +- npm and npx: run correctly on Windows +- depth: fix Windows download +- go: fix tags +- staticcheck: fix installation from source +- node-prune: fix installation from source +- ireturn: fix installation from source +- govulncheck: fix identification +- goreleaser: fix identification, no longer installs from source +- ghokin: fix archive download +- gh: fix executable path on Windows +- node: fix executable path on Windown +- prints "not found" messages in yellow instead of red now because they are not necessarily error conditions + ### 0.10.3 (2025-01-13) #### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 93acb133..6cb5563e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -569,7 +569,7 @@ dependencies = [ [[package]] name = "rta" -version = "0.10.3" +version = "0.10.4" dependencies = [ "big_s", "colored", diff --git a/Cargo.toml b/Cargo.toml index e78e8f7e..4f8e38e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rta" -version = "0.10.3" +version = "0.10.4" edition = "2021" rust-version = "1.75" diff --git a/README.md b/README.md index 05eef618..0ae8f1c1 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ rta --available alphavet && go vet "-vettool=$(rta --which alphavet)" ./... Here is a template for installing and using run-that-app in a `Makefile`: ```make -RTA_VERSION = 0.10.3 +RTA_VERSION = 0.10.4 # an example Make target that uses run-that-app test: tools/rta@${RTA_VERSION} diff --git a/docs/RELEASE.md b/docs/RELEASE.md index 5a1164c9..fe2dd0d1 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -2,11 +2,11 @@ - in a branch: - update [CHANGELOG.md](../CHANGELOG.md) - - update all occurrences of `0.10.3` + - update all occurrences of `0.10.4` - ship into `main` - create a new tag: ```bash - git tag v0.10.3 && git push --tags + git tag v0.10.4 && git push --tags ``` - the CI server creates the release fully automatically diff --git a/download.ps1 b/download.ps1 index fc55cbc2..512e3e41 100644 --- a/download.ps1 +++ b/download.ps1 @@ -1,6 +1,6 @@ $ErrorActionPreference = "Stop" -Set-Variable -Name "version" -Value "0.10.3" -Option Constant +Set-Variable -Name "version" -Value "0.10.4" -Option Constant function Welcome() { Write-Output "RUN-THAT-APP DOWNLOAD SCRIPT" diff --git a/download.sh b/download.sh index 99062d87..2fc58324 100755 --- a/download.sh +++ b/download.sh @@ -9,7 +9,7 @@ print_welcome() { echo } -VERSION="0.10.3" # the version of run-that-app to download +VERSION="0.10.4" # the version of run-that-app to download TMP_DIR=./run_that_app_install main() {