diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7d9b009..78e7f27 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.0" + ".": "0.11.0" } diff --git a/README.md b/README.md index 29c4d4c..1a615fe 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ > **Part of the [Kraken](https://github.com/KrakenNet) stack:** [**Fathom**](https://github.com/KrakenNet/fathom) (reasoning engine) · [Nautilus](https://github.com/KrakenNet/nautilus) (policy data broker) · [Stargraph](https://github.com/KrakenNet/stargraph) (agent-graph framework). -**Current version:** 0.10.0 +**Current version:** 0.11.0 **License:** MIT diff --git a/docs/index.md b/docs/index.md index 2eb7110..97e2e33 100644 --- a/docs/index.md +++ b/docs/index.md @@ -13,7 +13,7 @@ Fathom is a deterministic reasoning runtime for AI agents, built on CLIPS via clipspy. Rules are authored in YAML, compiled to CLIPS constructs, and evaluated in microseconds with auditable traces. -Current release: `fathom-rules` 0.10.0 (requires Python 3.12+). +Current release: `fathom-rules` 0.11.0 (requires Python 3.12+). ## Start here diff --git a/docs/llms-full.txt b/docs/llms-full.txt index 71965c7..d7df426 100644 --- a/docs/llms-full.txt +++ b/docs/llms-full.txt @@ -6,7 +6,7 @@ Fathom is a deterministic reasoning runtime for AI agents, built on CLIPS via clipspy. Rules are authored in YAML, compiled to CLIPS constructs, and evaluated in microseconds with auditable traces. -Current release: `fathom-rules` 0.10.0 (requires Python 3.12+). +Current release: `fathom-rules` 0.11.0 (requires Python 3.12+). ## Start here diff --git a/docs/reference/rest/openapi.json b/docs/reference/rest/openapi.json index 8d1bbda..e9ed21e 100644 --- a/docs/reference/rest/openapi.json +++ b/docs/reference/rest/openapi.json @@ -382,7 +382,7 @@ "info": { "description": "Deterministic reasoning runtime for AI agents", "title": "Fathom Rules Engine", - "version": "0.10.0" + "version": "0.11.0" }, "openapi": "3.1.0", "paths": { diff --git a/packages/fathom-ts/package.json b/packages/fathom-ts/package.json index 26d1d99..efc653d 100644 --- a/packages/fathom-ts/package.json +++ b/packages/fathom-ts/package.json @@ -1,6 +1,6 @@ { "name": "@fathom-rules/sdk", - "version": "0.10.0", + "version": "0.11.0", "description": "TypeScript SDK for the Fathom policy engine REST API", "license": "MIT", "main": "dist/index.js", diff --git a/pyproject.toml b/pyproject.toml index c951d90..1775042 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fathom-rules" -version = "0.10.0" +version = "0.11.0" description = "Deterministic reasoning runtime for AI agents, built on CLIPS via clipspy" readme = "README.md" license = "MIT" diff --git a/src/fathom/__init__.py b/src/fathom/__init__.py index 685aa61..65833bc 100644 --- a/src/fathom/__init__.py +++ b/src/fathom/__init__.py @@ -31,7 +31,7 @@ from fathom.attestation import AttestationService, verify_token from fathom.chained_log import ChainedAttestationLog, verify_chain -__version__ = "0.10.0" # x-release-please-version +__version__ = "0.11.0" # x-release-please-version #: Names served on first access instead of at import. Both modules import #: ``jwt`` and ``cryptography``, which ship in the optional ``attestation`` diff --git a/uv.lock b/uv.lock index ea3c02a..d133adf 100644 --- a/uv.lock +++ b/uv.lock @@ -854,7 +854,7 @@ wheels = [ [[package]] name = "fathom-rules" -version = "0.10.0" +version = "0.11.0" source = { editable = "." } dependencies = [ { name = "clipspy" }, @@ -974,7 +974,7 @@ requires-dist = [ { name = "grpcio", marker = "extra == 'grpc'", specifier = ">=1.60,<2" }, { name = "grpcio-tools", marker = "extra == 'grpc'", specifier = ">=1.60,<2" }, { name = "langchain-core", marker = "extra == 'langchain'", specifier = ">=0.2,<2" }, - { name = "mcp", marker = "extra == 'mcp'", specifier = ">=1.28.1,<2" }, + { name = "mcp", marker = "extra == 'mcp'", specifier = ">=1.28.1,<3" }, { name = "mike", marker = "extra == 'docs'", specifier = ">=2.1,<3" }, { name = "mkdocs-material", marker = "extra == 'docs'", specifier = ">=9.5,<10" }, { name = "mkdocs-redirects", marker = "extra == 'docs'", specifier = ">=1.2,<2" }, @@ -987,8 +987,8 @@ requires-dist = [ { name = "pydantic", specifier = ">=2.0,<3" }, { name = "pyjwt", extras = ["crypto"], marker = "extra == 'attestation'", specifier = ">=2.8,<3" }, { name = "pyyaml", specifier = ">=6.0,<7" }, - { name = "redis", extras = ["hiredis"], marker = "extra == 'fleet'", specifier = ">=5,<8" }, - { name = "rich", marker = "extra == 'cli'", specifier = ">=13,<15" }, + { name = "redis", extras = ["hiredis"], marker = "extra == 'fleet'", specifier = ">=5,<9" }, + { name = "rich", marker = "extra == 'cli'", specifier = ">=13,<16" }, { name = "typer", extras = ["all"], marker = "extra == 'cli'", specifier = ">=0.12,<1" }, { name = "uvicorn", marker = "extra == 'server'", specifier = ">=0.20,<1" }, ]