From e9b94fac4ac625f4d95e6137076b3a749f10368e Mon Sep 17 00:00:00 2001 From: Layne Penney Date: Fri, 17 Jul 2026 15:28:07 -0500 Subject: [PATCH] docs: README version sweep 0.5.0 -> 0.6.0 (install table, Deno import, pinning examples) Both registries serve 0.6.0 (PyPI + npm, released 2026-07-17 overnight train); the quick-start still advertised 0.5.0 installs. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_013h1THWWh5RistJqhGyoRzx --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b8a6e4d..790c937 100644 --- a/README.md +++ b/README.md @@ -12,16 +12,16 @@ This repo contains the v1 schema, types, validators, finalization pipeline, and | Package | Registry | Install | |---------|----------|---------| -| `@synapt-dev/extract` | npm | `npm install @synapt-dev/extract@0.5.0` | -| `synapt-extract` | PyPI | `pip install synapt-extract==0.5.0` | +| `@synapt-dev/extract` | npm | `npm install @synapt-dev/extract@0.6.0` | +| `synapt-extract` | PyPI | `pip install synapt-extract==0.6.0` | **Deno:** ```typescript -import { buildExtractionPrompt } from "npm:@synapt-dev/extract@0.5.0"; +import { buildExtractionPrompt } from "npm:@synapt-dev/extract@0.6.0"; ``` -**Version pinning:** Always pin to an exact version (`@0.5.0`, `==0.5.0`). Do not use ranges (`^0.5.0`, `~0.5.0`, `>=0.5.0`). The IL schema evolves across minor versions (v1.1 added `produced_by` object form, v1.2 added 8 new fields). Pinning prevents unexpected schema changes from affecting your extraction pipeline. +**Version pinning:** Always pin to an exact version (`@0.6.0`, `==0.6.0`). Do not use ranges (`^0.6.0`, `~0.6.0`, `>=0.6.0`). The IL schema evolves across minor versions (v1.1 added `produced_by` object form, v1.2 added 8 new fields). Pinning prevents unexpected schema changes from affecting your extraction pipeline. ## Quick start