Skip to content

Commit

Permalink
v0.10 (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo committed Jan 13, 2025
1 parent 0dee50e commit 26229a9
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# run-that-app changelog

### 0.10.0 (2025-01-13

#### New Features

- apps: mdbook-linkcheck

### 0.9.0 (2024-12-28)

#### New Features
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.9.0"
version = "0.10.0"
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 @@ -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.9.0
RTA_VERSION = 0.10.0

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

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

Set-Variable -Name "version" -Value "0.9.0" -Option Constant
Set-Variable -Name "version" -Value "0.10.0" -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.9.0" # the version of run-that-app to download
VERSION="0.10.0" # the version of run-that-app to download
TMP_DIR=./run_that_app_install

main() {
Expand Down

0 comments on commit 26229a9

Please sign in to comment.