From b313265d1aa0ab750d80394a377f353f2a8c0f16 Mon Sep 17 00:00:00 2001 From: Wei Qi Lu Date: Thu, 30 Apr 2026 16:57:55 -0700 Subject: [PATCH] python(chore): v0.14.1 prep --- python/CHANGELOG.md | 6 ++++++ python/pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index 3f8e38963..eeceefe42 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [v0.14.1] - April 30, 2026 + +### Bugfixes +- Lazy-import `h5py` and `nptdms` so the base install doesn't require them. ([#547](https://github.com/sift-stack/sift/pull/547)) +- Expose `page_size` on resource list methods so callers can shrink pages when responses hit gRPC message-size limits. ([#548](https://github.com/sift-stack/sift/pull/548)) + ## [v0.14.0] - April 28, 2026 ### What's New diff --git a/python/pyproject.toml b/python/pyproject.toml index c4e5a0ffd..042ec6b31 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "sift_stack_py" -version = "0.14.0" +version = "0.14.1" description = "Python client library for the Sift API" requires-python = ">=3.8" readme = { file = "README.md", content-type = "text/markdown" }