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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ format changes.

## [Unreleased]

## [0.75.0] — 2026-05-12

First release after the v0.70.0 baseline. Wraps the
[`protowire-cpp` v0.75.0](https://github.com/trendvidia/protowire-cpp/releases/tag/v0.75.0)
PXF v0.72-series feature set into the Python port, bringing the
`@<name>` / `@entry` / `@table` directive grammar, schema reserved-name
validator, `Result.directives` / `Result.tables` accessors, and the
`TableReader` streaming row reader through the nanobind FFI. The
Python port skips intermediate version numbers and lands the bundled
feature set directly on v0.75.0 to match the active wire revision
across the `protowire-*` stack.

### Added

- **`pxf.TableReader` and `pxf.bind_row`** (draft §3.4.4). Streaming
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build"
# 2021 CLI tool). The import name stays `import protowire` — these two
# names are independent (cf. python-dateutil → import dateutil).
name = "protowire-python"
version = "0.70.0"
version = "0.75.0"
description = "Python wrapper around protowire-cpp — PXF text, SBE binary, and envelope codecs."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/protowire/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from . import envelope, pxf, sbe

__all__ = ["pxf", "sbe", "envelope"]
__version__ = "0.70.0"
__version__ = "0.75.0"
Loading