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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.7.10 - 2026-08-21

- `dyro next` no longer reports `ready` when doctor has FAIL findings,
including missing-origin-only. JSON `state` is `needs_repair`,
`commands` includes scoped `doctor` (a read; `mutation_available`
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dyro"
version = "0.7.9"
version = "0.7.10"
description = "DyroEngineeringFlow: local-first automation and delivery control for multi-repository teams"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion src/dyro/bridge/skill/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ release, publish, console, install, or any confirmation/approval field.
```json
{
"protocol": {"major": 1, "minor": 0},
"client": {"name": "dyro-agent-bridge-skill", "version": "0.7.9"},
"client": {"name": "dyro-agent-bridge-skill", "version": "0.7.10"},
"operation": "bridge.capabilities.compact",
"input": {}
}
Expand Down
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -2146,6 +2146,6 @@ def test_package_version_matches_pyproject(self) -> None:
from dyro import __version__

metadata = tomllib.loads(Path("pyproject.toml").read_text(encoding="utf-8"))
self.assertEqual(metadata["project"]["version"], "0.7.9")
self.assertEqual(__version__, "0.7.9")
self.assertEqual(metadata["project"]["version"], "0.7.10")
self.assertEqual(__version__, "0.7.10")
self.assertEqual(__version__, metadata["project"]["version"])
4 changes: 2 additions & 2 deletions tests/test_console_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,12 +225,12 @@ def test_page_and_manifest_keep_p3_fail_closed_pins(self) -> None:
self.assertNotEqual(refresh_at, -1)
self.assertNotIn(b"/artifacts", script.body[refresh_at:next_fn])

def test_package_version_is_0_7_9(self) -> None:
def test_package_version_is_0_7_10(self) -> None:
import tomllib
from pathlib import Path

metadata = tomllib.loads(Path("pyproject.toml").read_text(encoding="utf-8"))
self.assertEqual(metadata["project"]["version"], "0.7.9")
self.assertEqual(metadata["project"]["version"], "0.7.10")


class ConsoleArtifactServiceTests(WorkspaceCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_release_gates.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_physics_train_refuses_published_0_6_9_tag(self) -> None:
def test_0_7_release_runs_gates_without_claiming_1_0(self) -> None:
stdout = StringIO()
with redirect_stdout(stdout):
code = main(["--root", str(ROOT), "--release-tag", "v0.7.9"])
code = main(["--root", str(ROOT), "--release-tag", "v0.7.10"])
self.assertEqual(code, 0)
self.assertIn("0.7 gates present", stdout.getvalue())
self.assertNotIn("1.0 gates present", stdout.getvalue())
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading