From 4aee1b9ce55599f23419b5b8623f34fd1a1ad5f0 Mon Sep 17 00:00:00 2001 From: Cheese Date: Tue, 21 Jul 2026 18:58:58 +0800 Subject: [PATCH] docs: add v0.1.4 release notes --- docs/release-notes/v0.1.4.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 docs/release-notes/v0.1.4.md diff --git a/docs/release-notes/v0.1.4.md b/docs/release-notes/v0.1.4.md new file mode 100644 index 0000000..0dde987 --- /dev/null +++ b/docs/release-notes/v0.1.4.md @@ -0,0 +1,24 @@ +# tdc v0.1.4 + +This release makes the tdc command line easier to discover and use consistently from terminals, scripts, and agents. Running `tdc` without a command now returns a compact AWS-style two-level usage synopsis, while explicit `help`, `--help`, and `--version` requests remain successful. Generated help displays flag value types in angle brackets, lists required flags first, and marks them with `(required)`. + +```text +--db-cluster-name (required) Starter DB cluster display name +--project-id TiDB Cloud project ID +``` + +Filesystem deletion now uses the resource identifier directly without repeating it through a console-style confirmation flag: + +```bash +tdc fs delete-file-system --file-system-name workspace +``` + +The release also clarifies the configured value as the default region code, separates human-readable errors from preceding terminal output with a blank line, and keeps the updated contracts covered by unit and binary end-to-end tests. + +Upgrade an existing installation with: + +```bash +tdc update --check +tdc update +tdc --version +```