From 92a6b6097c7a08f7a171d05adc872efd860f1eaf Mon Sep 17 00:00:00 2001 From: Marc Julien Date: Tue, 16 Sep 2025 10:14:01 -0700 Subject: [PATCH] python(chore): v0.9.0 prep --- python/CHANGELOG.md | 17 +++++++++++++++++ python/pyproject.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index e5bc6d9de..ed3794002 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [v0.9.0] - September 15, 2025 +### What's New +#### Parquet Upload Service +Adds support for uploading Parquet files to Sift for ingestion through the addition of the `ParquetUploadService`. See `examples/data_import/parquet` for an example of how to upload Parquet files. + +#### TDMS File Metadata Support +Adds a flag to automatically import TDMS file metdadata into Sift Runs. + +#### Lazy Flow Creation +Adds the ability to create flows lazily which reduces initialization time of the `IngestService`. + +### Full Changelog +- [Lazy flow creation](https://github.com/sift-stack/sift/pull/296) +- [Adds support for bytes](https://github.com/sift-stack/sift/pull/304) +- [Add ParquetUploadService](https://github.com/sift-stack/sift/pull/315) +- [Import TDMS file metadata to Sift Run](https://github.com/sift-stack/sift/pull/317) + ## [v0.8.4] - August 18, 2025 - [Add experimental protos for development](https://github.com/sift-stack/sift/pull/291) diff --git a/python/pyproject.toml b/python/pyproject.toml index a5bf57bfe..0baa6de65 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sift_stack_py" -version = "0.8.5" +version = "0.9.0" description = "Python client library for the Sift API" requires-python = ">=3.8" readme = { file = "README.md", content-type = "text/markdown" }