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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

---

## [Unreleased]
## [0.2.1] — 2026-06-13

### Fixed
- Streaming completions now raise `FerroStreamError` on malformed SSE chunks
Expand Down
2 changes: 1 addition & 1 deletion ferrolabsai/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

__version__ = version("ferrolabsai")
except Exception:
__version__ = "0.2.0"
__version__ = "0.2.1"
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 = "hatchling.build"

[project]
name = "ferrolabsai"
version = "0.2.0"
version = "0.2.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Keep the source-tree version fallback in sync

This release bump leaves ferrolabsai/_version.py falling back to "0.2.0". In environments that import the SDK from a source checkout or vendored copy without installed package metadata, importlib.metadata.version("ferrolabsai") raises PackageNotFoundError, so ferrolabsai.__version__ and the client User-Agent still report 0.2.0 even though the project metadata is 0.2.1. Please update the fallback value as part of the release bump.

Useful? React with 👍 / 👎.

description = "Official Python SDK for Ferro Labs AI Gateway — route LLM requests across 29 providers with a single OpenAI-compatible API"
readme = "README.md"
license = { text = "Apache-2.0" }
Expand Down
Loading