Skip to content

Commit

Permalink
v0.6.25
Browse files Browse the repository at this point in the history
  • Loading branch information
alanvardy committed Jan 1, 2025
1 parent 85f017a commit a083e2e
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 26 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

## Unreleased (on main branch only)

## 2025-01-01 v0.6.25

- Add comment count to task formatting
- Fix table of contents links in configuration docs
- Remove config requirement for `shell completions`, thank you `@WingsZeng`

## 2024-12-28 v0.6.24

Expand Down
42 changes: 21 additions & 21 deletions 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 = "tod"
version = "0.6.24"
version = "0.6.25"
authors = ["Alan Vardy <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions PUBLISH_CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Create `tod-bin` directory for pushing to AUR
3. Create PR with

```fish
VERSION=0.6.24 ./scripts/create_pr.sh
VERSION=0.6.25 ./scripts/create_pr.sh
```

4. Wait for it to pass, then merge and pull in latest changes
Expand All @@ -27,6 +27,6 @@ gh pr merge -r --admin && gs
5. Release it to all the places

```fish
VERSION=0.6.24 NAME=tod ./scripts/release.sh
VERSION=0.6.25 NAME=tod ./scripts/release.sh
```

8 changes: 6 additions & 2 deletions scripts/create_pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ echo "=== EDITING CARGO.TOML TO NEW VERSION ===" &&
ambr --regex "^version = \"\d+\.\d+\.\d+\"" "version = \"$VERSION\"" Cargo.toml &&
echo "=== CARGO UPDATE ===" &&
cargo update &&
echo "=== RUNNING TEST.SH ===" &&
./test.sh
echo "=== FORMAT ===" &&
cargo fmt &&
echo "=== CLIPPY ===" &&
cargo clippy -- -D warnings &&
echo "=== TEST ===" &&
cargo test &&
echo "=== CREATING PR ===" &&
gt create "v$VERSION" -a -m "v$VERSION" --no-interactive &&
gt submit --no-interactive &&
Expand Down

0 comments on commit a083e2e

Please sign in to comment.