diff --git a/CHANGELOG.md b/CHANGELOG.md index c262884..a464555 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 1.0.1 + +### Bug fixes +- Fix preprocessing edge case — handle new tables by safely catching the 404 Not Found response when no initial preprocessing status record exists yet. + ## 1.0.0 ### Breaking changes diff --git a/README.md b/README.md index ed527d8..4b1df73 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@
[![PyPI Version](https://img.shields.io/pypi/v/sourcerykit.svg?color=blue)](https://pypi.org/project/sourcerykit/) - [![status: v1.0.0](https://img.shields.io/badge/status-v1.0.0-blue)](https://github.com/ProvablyAI/sourcerykit/blob/main/CHANGELOG.md) + [![status: v1.0.1](https://img.shields.io/badge/status-v1.0.1-blue)](https://github.com/ProvablyAI/sourcerykit/blob/main/CHANGELOG.md) [![python: 3.12+](https://img.shields.io/badge/python-3.12+-slate)](https://github.com/ProvablyAI/sourcerykit/blob/main/pyproject.toml) [![license: BSL 1.1](https://img.shields.io/badge/license-BSL%201.1-crimson)](https://github.com/ProvablyAI/sourcerykit/blob/main/LICENSE.md) [![CI Build](https://github.com/ProvablyAI/sourcerykit/actions/workflows/ci.yml/badge.svg)](https://github.com/ProvablyAI/sourcerykit/actions) diff --git a/pyproject.toml b/pyproject.toml index fdea327..2bb708c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "sourcerykit" -version = "1.0.0" +version = "1.0.1" description = "Counterspell for hallucinating agents. Python SDK that breaks the illusion on every tool call, API response, and MCP handoff before bad outputs propagate." readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.12" @@ -138,7 +138,7 @@ exclude_also = ["if TYPE_CHECKING:", "raise NotImplementedError", "\\.\\.\\."] sourcerykit = "sourcerykit.cli.main:app" [tool.bumpversion] -current_version = "1.0.0" +current_version = "1.0.1" commit = false tag = false tag_name = "v{new_version}" diff --git a/uv.lock b/uv.lock index 7be5b3f..32b330b 100644 --- a/uv.lock +++ b/uv.lock @@ -2188,7 +2188,7 @@ wheels = [ [[package]] name = "sourcerykit" -version = "1.0.0" +version = "1.0.1" source = { editable = "." } dependencies = [ { name = "aiohttp" },