Skip to content
Merged

v0.32 #607

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# run-that-app changelog

### 0.32.0

- apps: rumdl

### 0.31.0

- apps: biome, gum, ty
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.31.0"
version = "0.32.0"
edition = "2024"
rust-version = "1.91"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ This installs Go 1.21.6 and uses its bundled `gofmt`.
Example Makefile integration:

```make
RTA_VERSION = 0.31.0 # version of run-that-app to use
RTA_VERSION = 0.32.0 # version of run-that-app to use

# 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.31.0`
- update all occurrences of `0.32.0`
- ship into `main`
- create a new tag:

```bash
git checkout main && git tag v0.31.0 && git push --tags
git checkout main && git tag v0.32.0 && 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,5 +1,5 @@
param(
[string]$Version = "0.31.0"
[string]$Version = "0.32.0"
)

$ErrorActionPreference = "Stop"
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="${1:-0.31.0}" # the version of run-that-app to download
VERSION="${1:-0.32.0}" # the version of run-that-app to download
TMP_DIR=./run_that_app_install

main() {
Expand Down
Loading