release: v0.2.0 — OKF adapter (stream 1); version sync pyproject/__version__/badge/CHANGELOG

This commit is contained in:
Kjell Tore Guttormsen 2026-07-06 09:45:53 +02:00
commit 542ac92349
4 changed files with 5 additions and 5 deletions

View file

@ -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 ->

View file

@ -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)

View file

@ -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"

View file

@ -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 ---------