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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The normative `SPEC.md`, the JSON Schema for machine YAML, and the cross-languag
**conformance suite** live in the spec repo. This repository implements that spec in
Python and is correct **iff it passes the conformance suite**.

Implements the **Determa State spec v0.0.5** (early alpha; all Determa State repos share one
Implements the **Determa State spec v0.0.6** (early alpha; all Determa State repos share one
[synchronized version](https://github.com/fruwehq/determa-state-spec)).

Status: **passing the full conformance suite** — all 31 engine cases
Expand All @@ -26,7 +26,7 @@ the build order in [issue #3][issue].
The cross-language **conformance suite** is the single source of truth for correctness;
this repository is correct **iff it passes it**. The suite lives in
[`fruwehq/determa-state-conformance`](https://github.com/fruwehq/determa-state-conformance); the test
harness **fetches it at the matching release tag** (`v0.0.5`) into a gitignored
harness **fetches it at the matching release tag** (`v0.0.6`) into a gitignored
`.cache/` — no git submodule. The normative `SPEC.md` and JSON Schema live in
[`fruwehq/determa-state-spec`](https://github.com/fruwehq/determa-state-spec); the schema-drift test fetches the
schema at the same tag.
Expand Down
2 changes: 1 addition & 1 deletion src/determa/state/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
is exactly one place to bump.
"""

__version__ = "0.0.5"
__version__ = "0.0.6"
4 changes: 2 additions & 2 deletions src/determa/state/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def cmd_list(args: argparse.Namespace, store: Store) -> int:
rows = [
{
"id": i.id,
"def": f"{i.machine.id}@{i.machine.version}",
"definition": f"{i.machine.id}@{i.machine.version}",
"parent": i.parent_id,
"status": i.status.value,
"config": i.active_leaf_names(),
Expand Down Expand Up @@ -495,7 +495,7 @@ def _parse_captured(text: str) -> Any:
def _state_json(host: Host, inst: Instance) -> dict[str, Any]:
return {
"instance": inst.id,
"def": f"{inst.machine.id}@{inst.machine.version}",
"definition": f"{inst.machine.id}@{inst.machine.version}",
"status": inst.status.value,
"config": inst.active_leaf_names(),
"esvs": inst.resolved_esvs(),
Expand Down
Loading