Skip to content

Commit

Permalink
v0.8.1 (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo authored Oct 19, 2024
1 parent 1ba1874 commit 385c753
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
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.8.1 (2024-10-19)

- apps: node-prune

### 0.8.0 (2024-10-19)

- list of apps is now displayed via the `--apps` (for a complete list) or `-a` (for the app names only) switch
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.8.0"
version = "0.8.1"
edition = "2021"
rust-version = "1.75"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,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.0
RTA_VERSION = 0.8.1

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

```bash
git tag v0.8.0 && git push --tags
git tag v0.8.1 && 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,6 +1,6 @@
$ErrorActionPreference = "Stop"

Set-Variable -Name "version" -Value "0.8.0" -Option Constant
Set-Variable -Name "version" -Value "0.8.1" -Option Constant

function Welcome() {
Write-Output "RUN-THAT-APP DOWNLOAD SCRIPT"
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="0.8.0" # the version of run-that-app to download
VERSION="0.8.1" # the version of run-that-app to download
TMP_DIR=./run_that_app_install

main() {
Expand Down

0 comments on commit 385c753

Please sign in to comment.