This is an automated email from the ASF dual-hosted git repository.
sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-releases-client.git
The following commit(s) were added to refs/heads/main by this push:
new fd87833 Update the commands documentation with recently added commands
fd87833 is described below
commit fd878334057f021f4005bc95c41ea34780e8b3de
Author: Sean B. Palmer <[email protected]>
AuthorDate: Tue Jul 15 20:43:43 2025 +0100
Update the commands documentation with recently added commands
---
COMMANDS.md | 108 +++++++++++++++++++++++++++++++++++++++++++++++----------
pyproject.toml | 4 +--
uv.lock | 4 +--
3 files changed, 93 insertions(+), 23 deletions(-)
diff --git a/COMMANDS.md b/COMMANDS.md
index cfe81f2..127a646 100644
--- a/COMMANDS.md
+++ b/COMMANDS.md
@@ -7,6 +7,26 @@ Usage: atr docs
Show comprehensive CLI documentation in Markdown.
```
+## atr announce
+
+```
+Usage: announce [ARGS] [OPTIONS]
+
+Announce a release.
+
+╭─ Arguments
──────────────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ * PROJECT [required]
│
+│ * VERSION [required]
│
+│ * REVISION [required]
│
+╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
+╭─ Parameters
─────────────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ * MAILING-LIST --mailing-list -m [required]
│
+│ SUBJECT --subject -s
│
+│ BODY --body -b
│
+│ PATH-SUFFIX --path-suffix -p
│
+╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
+```
+
## atr checks
```
@@ -146,11 +166,25 @@ Usage: dev COMMAND
Developer operations.
╭─ Commands
───────────────────────────────────────────────────────────────────────────────────────────────────────────╮
-│ env Show the environment variables.
│
-│ pat Read a PAT from development configuration.
│
-│ stamp Update version and exclude-newer in pyproject.toml.
│
-│ token Generate a random alphabetical token.
│
-│ user Show the value of $USER.
│
+│ delete Delete a release.
│
+│ env Show the environment variables.
│
+│ pat Read a PAT from development configuration.
│
+│ stamp Update version and exclude-newer in pyproject.toml.
│
+│ token Generate a random alphabetical token.
│
+│ user Show the value of $USER.
│
+╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
+```
+
+### atr dev delete
+
+```
+Usage: delete [ARGS]
+
+Delete a release.
+
+╭─ Arguments
──────────────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ * PROJECT [required]
│
+│ * VERSION [required]
│
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
```
@@ -214,19 +248,6 @@ Draft operations.
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
```
-### atr draft delete
-
-```
-Usage: delete [ARGS]
-
-Delete a draft release.
-
-╭─ Arguments
──────────────────────────────────────────────────────────────────────────────────────────────────────────╮
-│ * PROJECT [required]
│
-│ * VERSION [required]
│
-╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
-```
-
## atr drop
```
@@ -290,6 +311,14 @@ Usage: show
Show stored JWT token.
```
+## atr keys
+
+```
+Usage: keys
+
+Keys operations.
+```
+
## atr list
```
@@ -357,6 +386,32 @@ Set a configuration value using dot notation.
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
```
+## atr ssh
+
+```
+Usage: ssh COMMAND
+
+SSH operations.
+
+╭─ Commands
───────────────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ add Add an SSH key.
│
+│ delete Delete an SSH key.
│
+│ list List SSH keys.
│
+╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
+```
+
+### atr ssh add
+
+```
+Usage: add [ARGS]
+
+Add an SSH key.
+
+╭─ Arguments
──────────────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ * TEXT [required]
│
+╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
+```
+
## atr upload
```
@@ -380,6 +435,21 @@ Usage: vote COMMAND
Vote operations.
╭─ Commands
───────────────────────────────────────────────────────────────────────────────────────────────────────────╮
-│ start Start a vote.
│
+│ resolve Resolve a vote.
│
+│ start Start a vote.
│
+╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
+```
+
+### atr vote resolve
+
+```
+Usage: resolve [ARGS] [OPTIONS]
+
+Resolve a vote.
+
+╭─ Parameters
─────────────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ * PROJECT --project [required]
│
+│ * VERSION --version [required]
│
+│ * RESOLUTION --resolution [choices: passed, failed] [required]
│
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
```
diff --git a/pyproject.toml b/pyproject.toml
index f7b124b..ddb0d27 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -11,7 +11,7 @@ build-backend = "hatchling.build"
[project]
name = "apache-trusted-releases"
-version = "0.20250715.1941"
+version = "0.20250715.1943"
description = "ATR CLI and Python API"
readme = "README.md"
requires-python = ">=3.13"
@@ -72,4 +72,4 @@ select = [
]
[tool.uv]
-exclude-newer = "2025-07-15T19:41:00Z"
+exclude-newer = "2025-07-15T19:43:00Z"
diff --git a/uv.lock b/uv.lock
index f7e7686..0c97bac 100644
--- a/uv.lock
+++ b/uv.lock
@@ -2,7 +2,7 @@ version = 1
requires-python = ">=3.13"
[options]
-exclude-newer = "2025-07-15T19:41:00Z"
+exclude-newer = "2025-07-15T19:43:00Z"
[[package]]
name = "aiohappyeyeballs"
@@ -83,7 +83,7 @@ wheels = [
[[package]]
name = "apache-trusted-releases"
-version = "0.20250715.1941"
+version = "0.20250715.1943"
source = { editable = "." }
dependencies = [
{ name = "aiohttp" },
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]