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
17 changes: 8 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@ on:
branches: [main]

jobs:
test:
rust:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: dtolnay/rust-toolchain@1.94.0
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install -r requirements-lock.txt
- run: python -m pip install -e . --no-deps
- run: python -m unittest discover -s tests -p 'test_*.py'
components: clippy,rustfmt
- run: cargo fmt --all -- --check
- run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- run: cargo test --workspace --all-features --locked
- run: cargo build --workspace --release --locked
- run: scripts/ndf check --root tests/fixtures/markdown/project --format json
- run: git diff --check
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ dist/
*.sqlite
__pycache__/
*.py[cod]
/target/
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to NDF are documented here.

### Added

- Standalone Rust 1.94.0 knowledge compiler and versioned JSON CLI.
- Canonical graph IR 0.1 with project-scoped `ndf://` identities.
- Strict Markdown, PTO ASL, repository, test, and evidence adapters.
- Deterministic SQLite schema v1 with semantic build hashes and provenance.
Expand All @@ -15,6 +16,8 @@ All notable changes to NDF are documented here.

### Changed

- Replaced the pre-release Python prototype with a Rust-only workspace; Python
remains available only in Git history as migration evidence.
- NDF format 0.2 separates `kind`, `modality`, `refinement`, `domain`, and
`status`.
- SQLite is defined as derived, disposable state rather than an authored
Expand All @@ -26,4 +29,5 @@ All notable changes to NDF are documented here.
adapter.
- PTO-SPEC ASL retains architecture authority and is normalized through the
PTO adapter.
- NDF has no supported Python package, import API, or PyO3 compatibility layer.
- Format, IR, JSON output, CLI, and plugin surfaces remain experimental.
Loading
Loading