diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b4e9013b..6db19b95 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.16.0" + ".": "0.17.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 87e71c2c..7848b2e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 0.17.0 (2026-02-03) + +Full Changelog: [v0.16.0...v0.17.0](https://github.com/openlayer-ai/openlayer-python/compare/v0.16.0...v0.17.0) + +### Features + +* **closes OPEN-8683:** multimodal attachment support for the Python SDK ([b50f891](https://github.com/openlayer-ai/openlayer-python/commit/b50f891714170ddcda5c4ae2fbb421e3fc8818bc)) +* **closes OPEN-8684:** enhance OpenAI tracer to support multimodal inputs/outputs ([0d8fadd](https://github.com/openlayer-ai/openlayer-python/commit/0d8faddf65c30c698e57ab33e5f958b8da806281)) + + +### Bug Fixes + +* **closes OPEN-8781:** files not being parsed correctly for OpenAI tracer ([f33de76](https://github.com/openlayer-ai/openlayer-python/commit/f33de762b8c5eef9b995e074c630775cda1bd2e1)) + + +### Chores + +* **closes OPEN-8686:** upload attachments in a non-blocking way ([5fb1ce5](https://github.com/openlayer-ai/openlayer-python/commit/5fb1ce53d99b4618216293ac62d757462c038508)) +* **closes OPEN-8725:** sanitize raw output when there are attachments ([471547b](https://github.com/openlayer-ai/openlayer-python/commit/471547bfbe9f7d273e3ac3041119a200460dc94b)) + + +### Refactors + +* various small improvements ([3a2bf2c](https://github.com/openlayer-ai/openlayer-python/commit/3a2bf2c761b3414044a0022811884ad13e3e970a)) + ## 0.16.0 (2026-01-30) Full Changelog: [v0.15.2...v0.16.0](https://github.com/openlayer-ai/openlayer-python/compare/v0.15.2...v0.16.0) diff --git a/pyproject.toml b/pyproject.toml index 4035df56..6b2d0e93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "openlayer" -version = "0.16.0" +version = "0.17.0" description = "The official Python library for the openlayer API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/openlayer/_version.py b/src/openlayer/_version.py index 6ff21237..34894388 100644 --- a/src/openlayer/_version.py +++ b/src/openlayer/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "openlayer" -__version__ = "0.16.0" # x-release-please-version +__version__ = "0.17.0" # x-release-please-version