From 525d660e4f710637f3f11889e9a41abf5b5bacd0 Mon Sep 17 00:00:00 2001 From: Wei Qi Lu Date: Tue, 19 May 2026 14:22:06 -0700 Subject: [PATCH] python(chore): v0.16.1 prep --- python/CHANGELOG.md | 5 +++++ python/pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index 246bf7416..e60084db8 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [v0.16.1] - May 19, 2026 + +### Bugfixes +- Replace the POSIX-only `fcntl.flock` call in the test-results log with a cross-platform `filelock.FileLock` so importing `sift_client` no longer fails on Windows. ([#574](https://github.com/sift-stack/sift/pull/574)) + ## [v0.16.0] - May 14, 2026 ### What's New diff --git a/python/pyproject.toml b/python/pyproject.toml index b0b1d3cc2..629ef6174 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.16.0" +version = "0.16.1" description = "Python client library for the Sift API" requires-python = ">=3.8" readme = { file = "README.md", content-type = "text/markdown" }