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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
publish path, since `created` never fires for drafts that get published

### Fixed
- `test_version_command` asserted a hardcoded `0.2.0` in the version output,
so the `version` command failed once the package bumped to `0.2.1a0`. The
test now compares against `__version__`.
- Python 3.10 support dropped: `requires-python` is now `^3.11`, the CI
matrix no longer tests 3.10, and the pydantic pin was raised to `>=2.12`
so `pydantic-core` ships a cp314 wheel and the Python 3.14 CI job no
Expand Down
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import yaml
from click.testing import CliRunner

from hier_config_cli import cli
from hier_config_cli import __version__, cli


# Test `version` command
Expand All @@ -17,7 +17,7 @@ def test_version_command() -> None:
result = runner.invoke(cli, ["version"])
assert result.exit_code == 0
assert "hier-config-cli version" in result.output
assert "0.2.0" in result.output
assert __version__ in result.output


# Test `list_platforms` command
Expand Down
Loading