From 47af0c6f926fe5734fc30e3f253e88549e7e56ae Mon Sep 17 00:00:00 2001 From: Layne Penney Date: Tue, 4 Aug 2026 02:57:16 -0500 Subject: [PATCH] docs: README version sweep 0.6.0 -> 0.6.1 (install table, Deno import, pinning examples) Both registries serve 0.6.1 (verified against npm and PyPI at commit time); the README's install and pinning examples were one patch behind. Co-Authored-By: Claude Opus 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 790c937..2b2b5d3 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.6.0` | -| `synapt-extract` | PyPI | `pip install synapt-extract==0.6.0` | +| `@synapt-dev/extract` | npm | `npm install @synapt-dev/extract@0.6.1` | +| `synapt-extract` | PyPI | `pip install synapt-extract==0.6.1` | **Deno:** ```typescript -import { buildExtractionPrompt } from "npm:@synapt-dev/extract@0.6.0"; +import { buildExtractionPrompt } from "npm:@synapt-dev/extract@0.6.1"; ``` -**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. +**Version pinning:** Always pin to an exact version (`@0.6.1`, `==0.6.1`). Do not use ranges (`^0.6.1`, `~0.6.1`, `>=0.6.1`). 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