From 542ac92349cd0015972105ba66017b36cce1e708 Mon Sep 17 00:00:00 2001 From: Kjell Tore Guttormsen Date: Mon, 6 Jul 2026 09:45:53 +0200 Subject: [PATCH] =?UTF-8?q?release:=20v0.2.0=20=E2=80=94=20OKF=20adapter?= =?UTF-8?q?=20(stream=201);=20version=20sync=20pyproject/=5F=5Fversion=5F?= =?UTF-8?q?=5F/badge/CHANGELOG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++-- README.md | 2 +- pyproject.toml | 2 +- src/llm_ingestion_guard/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c05146..b4e58e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.2.0] — 2026-07-06 -### Added — OKF adapter (v0.2, stream 1) +### Added — OKF adapter (stream 1) An OKF (Google Open Knowledge Format v0.1) adapter *on top of* the format-agnostic core (`llm_ingestion_guard.okf`). The core stays `text -> diff --git a/README.md b/README.md index a6e7676..a5de13a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # llm-ingestion-guard -![Version](https://img.shields.io/badge/version-0.1.0-blue) +![Version](https://img.shields.io/badge/version-0.2.0-blue) ![Status](https://img.shields.io/badge/status-alpha-orange) ![Python](https://img.shields.io/badge/python-3.10%2B-purple) ![Tests](https://img.shields.io/badge/tests-275_passing-green) diff --git a/pyproject.toml b/pyproject.toml index aedd7fe..5df2140 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "llm-ingestion-guard" -version = "0.1.0" +version = "0.2.0" description = "A minimal, dependency-light defensive layer for LLM ingestion pipelines — the write-time siblings of query-time chatbot guardrails." readme = "README.md" requires-python = ">=3.10" diff --git a/src/llm_ingestion_guard/__init__.py b/src/llm_ingestion_guard/__init__.py index 252ff7f..db0ff6c 100644 --- a/src/llm_ingestion_guard/__init__.py +++ b/src/llm_ingestion_guard/__init__.py @@ -58,7 +58,7 @@ from .grounding import ( ) from . import okf -__version__ = "0.1.0" +__version__ = "0.2.0" # --- §6 bookends: the two library-side halves around the transform ---------