Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.1] - 2026-06-15 — Cleanup & Z-Timestamp Fix

First post-1.0 patch: a Python 3.10 crash fix plus an internal hygiene sweep.
All changes are internal/private; no public symbol is affected and the frozen
1.0 API is unchanged.

### Fixed

- **Knowledge and checkpoint loaders no longer crash on `Z`-suffixed timestamps
Expand Down
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.1] - 2026-06-15 — Cleanup & Z-Timestamp Fix

First post-1.0 patch: a Python 3.10 crash fix plus an internal hygiene sweep.
All changes are internal/private; no public symbol is affected and the frozen
1.0 API is unchanged.

### Fixed

- **Knowledge and checkpoint loaders no longer crash on `Z`-suffixed timestamps
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "selectools"
version = "1.0.0"
version = "1.0.1"
description = "Production-ready Python framework for AI agents with multi-agent graphs, hybrid RAG, guardrails, audit logging, 50 evaluators, and a visual builder. Supports OpenAI, Anthropic, Gemini, Ollama. By NichevLabs."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/selectools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Public exports for the selectools package."""

__version__ = "1.0.0"
__version__ = "1.0.1"

# Import submodules (lazy loading for optional dependencies)
from . import embeddings, evals, guardrails, models, observe, patterns, rag, toolbox
Expand Down