Skip to content

Commit

Permalink
v0.10.4 (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo authored Jan 25, 2025
1 parent b5b05f3 commit 1fac96a
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 7 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rta"
version = "0.10.3"
version = "0.10.4"
edition = "2021"
rust-version = "1.75"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions docs/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion download.ps1
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 1fac96a

Please sign in to comment.