Skip to content
Merged
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
5 changes: 0 additions & 5 deletions .changeset/ctl-core-0.1.1.md

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## qctl 0.3.1

- ctl-core 0.1.1. `features = ["usage"]` compiles without `help`.

## qctl 0.3.0

- `qctl close-from-git` archives queued ids closed by commit-body trailers. `qctl hook install` writes a git pre-push, or prints the Lefthook snippet to add; it never edits `lefthook.yml`. Neither amends.
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 = "qctl"
version = "0.3.0"
version = "0.3.1"
edition = "2024"
rust-version = "1.97.1"
description = "Control in-repo YAML work queues"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pins the tool and the task include to the same release:
```toml
[task_config]
includes = [
"git::https://github.com/victor-software-house/qctl.git//tasks/q?ref=v0.3.0",
"git::https://github.com/victor-software-house/qctl.git//tasks/q?ref=v0.3.1",
"mise-tasks",
]
```
Expand All @@ -32,7 +32,7 @@ Install:
```sh
cargo install qctl --locked
# or the native tarball:
mise x github:victor-software-house/qctl@0.3.0 -- qctl --version
mise x github:victor-software-house/qctl@0.3.1 -- qctl --version
```

Do not name this `taskctl` (existing Go Make alternative) or `pi-tasks`
Expand Down
4 changes: 2 additions & 2 deletions examples/mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ lockfile = true
# the release you copy is not in that tarball yet — pin the release that carries
# the verb you copied.
[tools]
"github:victor-software-house/qctl" = "0.3.0"
"github:victor-software-house/qctl" = "0.3.1"

[task_config]
includes = [
"git::https://github.com/victor-software-house/qctl.git//tasks/q?ref=v0.3.0",
"git::https://github.com/victor-software-house/qctl.git//tasks/q?ref=v0.3.1",
"mise-tasks",
]
2 changes: 1 addition & 1 deletion tasks/q/q
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#MISE description="Run the qctl work-queue CLI"
#MISE dir="{{cwd}}"
#MISE raw_args=true
#MISE tools = { "github:victor-software-house/qctl" = "0.3.0" }
#MISE tools = { "github:victor-software-house/qctl" = "0.3.1" }
#USAGE mount "mise run --quiet q -- --usage-spec=q"

set -euo pipefail
Expand Down
Loading