Skip to content

Commit 568a7df

Browse files
authored
v0.7.1 (#282)
1 parent 588b6aa commit 568a7df

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# run-that-app changelog
22

3+
### 0.7.1 (2024-09-15)
4+
5+
#### Bug Fixes
6+
7+
- finds the mdbook executable in a subfolder after installation from source
8+
39
### 0.7.0 (2024-09-15)
410

511
#### New Features

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rta"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
edition = "2021"
55
rust-version = "1.75"
66

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ rta --available alphavet && go vet "-vettool=$(rta --which alphavet)" ./...
158158
Here is a template for installing and using run-that-app in a `Makefile`:
159159

160160
```make
161-
RTA_VERSION = 0.7.0
161+
RTA_VERSION = 0.7.1
162162

163163
# an example Make target that uses run-that-app
164164
test: tools/rta@${RTA_VERSION}

docs/RELEASE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
- in a branch:
44
- update [CHANGELOG.md](../CHANGELOG.md)
5-
- update all occurrences of `0.7.0`
5+
- update all occurrences of `0.7.1`
66
- ship into `main`
77
- create a new tag:
88

99
```bash
10-
git tag v0.7.0 && git push --tags
10+
git tag v0.7.1 && git push --tags
1111
```
1212
- the CI server creates a draft release - review and publish it

download.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$ErrorActionPreference = "Stop"
22

3-
Set-Variable -Name "version" -Value "0.7.0" -Option Constant
3+
Set-Variable -Name "version" -Value "0.7.1" -Option Constant
44

55
function Welcome() {
66
Write-Output "RUN-THAT-APP DOWNLOAD SCRIPT"

download.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ print_welcome() {
99
echo
1010
}
1111

12-
VERSION="0.7.0" # the version of run-that-app to download
12+
VERSION="0.7.1" # the version of run-that-app to download
1313
TMP_DIR=./run_that_app_install
1414

1515
main() {

0 commit comments

Comments
 (0)