Skip to content

Commit cf6ad1d

Browse files
authored
v0.33 (#614)
1 parent 5b05397 commit cf6ad1d

7 files changed

Lines changed: 14 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# run-that-app changelog
22

3+
### 0.33.0
4+
5+
BREAKING CHANGE: the downloader now requires to provide the version to install via the named `--version` parameter
6+
7+
- the downloader now supports the `--name` argument to save the binary under a specific name
8+
- apps: pyrefly
9+
310
### 0.32.0
411

512
- apps: rumdl

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rta"
3-
version = "0.32.0"
3+
version = "0.33.0"
44
edition = "2024"
55
rust-version = "1.91"
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ This installs Go 1.21.6 and uses its bundled `gofmt`.
338338
Example Makefile integration:
339339

340340
```make
341-
RTA_VERSION = 0.32.0 # version of run-that-app to use
341+
RTA_VERSION = 0.33.0 # version of run-that-app to use
342342

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

docs/RELEASE.md

Lines changed: 2 additions & 2 deletions
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.32.0`
5+
- update all occurrences of `0.33.0`
66
- ship into `main`
77
- create a new tag:
88

99
```bash
10-
git checkout main && git tag v0.32.0 && git push --tags
10+
git checkout main && git tag v0.33.0 && git push --tags
1111
```
1212
- the CI server creates the release fully automatically

download.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
param(
2-
[string]$Version = "0.32.0"
2+
[string]$Version = "0.33.0"
33
)
44

55
$ErrorActionPreference = "Stop"

download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ print_welcome() {
99
echo
1010
}
1111

12-
VERSION="0.32.0" # the default version of run-that-app to download
12+
VERSION="0.33.0" # the default version of run-that-app to download
1313
DEST_FILENAME="rta" # the default name of the downloaded file
1414
TMP_DIR=./run_that_app_install # the temporary directory to download the archive to
1515

0 commit comments

Comments
 (0)