From 85ca39de65dcbd53e04b005c63dfedc0c054977f Mon Sep 17 00:00:00 2001 From: Kevin Goslar Date: Sat, 28 Dec 2024 15:19:27 -0500 Subject: [PATCH] v0.9 (#305) --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- docs/RELEASE.md | 4 ++-- download.ps1 | 2 +- download.sh | 2 +- 7 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7740f516..e6c2e68e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # run-that-app changelog +### 0.9.0 (2024-12-28) + +#### New Features + +- Can now compile Go-based tools using an RTA-installed Go toolchain ([#237](https://github.com/kevgo/run-that-app/issues/237)). + +#### Bug Fixes + +- Adds executables of the application to run to the PATH of the subshell ([#298](https://github.com/kevgo/run-that-app/issues/298)). + ### 0.8.1 (2024-10-19) - apps: node-prune diff --git a/Cargo.lock b/Cargo.lock index 6bb70d92..99b5532e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -569,7 +569,7 @@ dependencies = [ [[package]] name = "rta" -version = "0.8.1" +version = "0.9.0" dependencies = [ "big_s", "colored", diff --git a/Cargo.toml b/Cargo.toml index b8efb732..440e8a95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rta" -version = "0.8.1" +version = "0.9.0" edition = "2021" rust-version = "1.75" diff --git a/README.md b/README.md index f7581574..02aa26be 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.8.1 +RTA_VERSION = 0.9.0 # 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 622869e3..d9387c42 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.8.1` + - update all occurrences of `0.9.0` - ship into `main` - create a new tag: ```bash - git tag v0.8.1 && git push --tags + git tag v0.9.0 && git push --tags ``` - the CI server creates the release fully automatically diff --git a/download.ps1 b/download.ps1 index 7b93724f..dc4ea7ae 100644 --- a/download.ps1 +++ b/download.ps1 @@ -1,6 +1,6 @@ $ErrorActionPreference = "Stop" -Set-Variable -Name "version" -Value "0.8.1" -Option Constant +Set-Variable -Name "version" -Value "0.9.0" -Option Constant function Welcome() { Write-Output "RUN-THAT-APP DOWNLOAD SCRIPT" diff --git a/download.sh b/download.sh index 2f72c11b..eac00d1d 100755 --- a/download.sh +++ b/download.sh @@ -9,7 +9,7 @@ print_welcome() { echo } -VERSION="0.8.1" # the version of run-that-app to download +VERSION="0.9.0" # the version of run-that-app to download TMP_DIR=./run_that_app_install main() {