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 AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Format-1 work currently uses these immutable pre-release inputs:
- specification: `4bd4d9588d11b75d376380b6120676a056a4bc45`;
- conformance: `ffbc65cbce49733803119a7dabf02a9727819ba8` (88 core cases).

The package version is still `0.0.6`; the specification, conformance suite, Python
engine, and Rust engine version together.
The package metadata is `0.0.7` for the next synchronized release; the specification,
conformance suite, Python engine, and Rust engine version together.

## Boundaries

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ behavior.
## Versioning And Release

`src/determa/state/__about__.py` is the single package version source. Determa State
specification, conformance, Python, and Rust versions are synchronized. The current
package remains `0.0.6` while format 1 is pre-release.
specification, conformance, Python, and Rust versions are synchronized. The package
metadata is `0.0.7` for the next synchronized format 1 release.

A `vX.Y.Z` tag triggers `release.yml` and publishes to PyPI through Trusted Publishing,
gated by the manually approved `pypi` environment. Version bumps, tags, and publication
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ commit `4bd4d9588d11b75d376380b6120676a056a4bc45`. Correctness is determined by
88-case core suite at conformance commit
`ffbc65cbce49733803119a7dabf02a9727819ba8`.

The package version remains `0.0.6` until the specification, conformance suite, Python
engine, and Rust engine are released together.
The package metadata is `0.0.7` for the next synchronized release of the specification,
conformance suite, Python engine, and Rust engine.

## Install

The published `0.0.6` distribution predates format 1. Until the next synchronized
Determa State release, install this pre-release implementation from a checkout:
The published `0.0.6` distribution predates format 1. Until the synchronized `0.0.7`
Determa State release is published, install this pre-release implementation from a
checkout:

```sh
git clone https://github.com/fruwehq/determa-state-python.git
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.6"
__version__ = "0.0.7"
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
from determa.state.cli import main


def test_version_remains_unchanged() -> None:
assert __version__ == "0.0.6"
def test_version_matches_release_metadata() -> None:
assert __version__ == "0.0.7"


def test_validate_command_reports_fingerprint(tmp_path, capsys) -> None:
Expand Down