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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,15 @@ The version in `dacli/constants.py` is the single source of truth:
`pyproject.toml` reads it dynamically, the release workflow refuses a tag
that disagrees with it, and PyPI therefore always matches the tag.

## Unreleased
## 0.1.1 — 2026-08-01

Documentation only; no code changes.

The 0.1.0 project page on PyPI carried the pre-launch README, which told
visitors "**Option B — pip install.** Not published yet. Use Option A for
now." — on the page of the published package. A project description is
frozen into the uploaded artifact and PyPI has no way to edit it, so
correcting it requires a release. That is what this one is for.

### Changed

Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ authors:
alias: FZ2000
type: software
license: MIT
version: "0.1.0"
date-released: "2026-07-30"
version: "0.1.1"
date-released: "2026-08-01"
repository-code: "https://github.com/FZ2000/da-cli"
url: "https://github.com/FZ2000/da-cli"
keywords:
Expand Down
2 changes: 1 addition & 1 deletion dacli/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
value, or the patch will not reach it.
"""

__version__ = "0.1.0"
__version__ = "0.1.1"

import os
import random
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ da --version
```

```text
da-cli 0.1.0
da-cli 0.1.1
```

### Option B — clone the repository
Expand Down Expand Up @@ -105,7 +105,7 @@ installed:
~/.local/share/da-cli/dacli/ (17 modules)
~/.local/bin/da -> ~/.local/share/da-cli/da

da-cli 0.1.0
da-cli 0.1.1
```

The module count reflects however many files the package currently has,
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Command reference

Every `da` command and flag, generated from `build_parser()` in the `dacli` package (version 0.1.0).
Every `da` command and flag, generated from `build_parser()` in the `dacli` package (version 0.1.1).

For settings that live in a config file rather than on the command line, see [configuration](configuration.md). For what each exit code means, see [exit codes](exit-codes.md).

Expand Down
Loading