From 9520d3d9c5cedbc163788db2920be3b1e5a13f1a Mon Sep 17 00:00:00 2001 From: Kevin Goslar Date: Mon, 13 Jan 2025 14:25:51 -0500 Subject: [PATCH] v0.10.1 (#311) --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- docs/RELEASE.md | 4 ++-- download.ps1 | 2 +- download.sh | 2 +- 7 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a51efa0c..abb110fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # run-that-app changelog +### 0.10.1 (2025-01-13) + +#### Bug Fixes + +- fixes the path to the mdbook-linkcheck executable when installing from source + ### 0.10.0 (2025-01-13 #### New Features diff --git a/Cargo.lock b/Cargo.lock index b289783e..8651ebfe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -569,7 +569,7 @@ dependencies = [ [[package]] name = "rta" -version = "0.10.0" +version = "0.10.1" dependencies = [ "big_s", "colored", diff --git a/Cargo.toml b/Cargo.toml index 78a88ef8..309bb76a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rta" -version = "0.10.0" +version = "0.10.1" edition = "2021" rust-version = "1.75" diff --git a/README.md b/README.md index 28e4c56c..cc89980a 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.0 +RTA_VERSION = 0.10.1 # 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 05aa8d55..b4438841 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.0` + - update all occurrences of `0.10.1` - ship into `main` - create a new tag: ```bash - git tag v0.10.0 && git push --tags + git tag v0.10.1 && git push --tags ``` - the CI server creates the release fully automatically diff --git a/download.ps1 b/download.ps1 index e267c828..5a9230c7 100644 --- a/download.ps1 +++ b/download.ps1 @@ -1,6 +1,6 @@ $ErrorActionPreference = "Stop" -Set-Variable -Name "version" -Value "0.10.0" -Option Constant +Set-Variable -Name "version" -Value "0.10.1" -Option Constant function Welcome() { Write-Output "RUN-THAT-APP DOWNLOAD SCRIPT" diff --git a/download.sh b/download.sh index 85826aeb..c5a45e62 100755 --- a/download.sh +++ b/download.sh @@ -9,7 +9,7 @@ print_welcome() { echo } -VERSION="0.10.0" # the version of run-that-app to download +VERSION="0.10.1" # the version of run-that-app to download TMP_DIR=./run_that_app_install main() {