diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 579b50b0..5d9c21c9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.0-alpha.61" + ".": "0.2.0-alpha.62" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e38837c9..3b10d5f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ 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.2.0-alpha.62 (2025-04-29) + +Full Changelog: [v0.2.0-alpha.61...v0.2.0-alpha.62](https://github.com/openlayer-ai/openlayer-python/compare/v0.2.0-alpha.61...v0.2.0-alpha.62) + +### Bug Fixes + +* **openai tracer:** Azure OpenAI chat completion step duplicated ([23ee128](https://github.com/openlayer-ai/openlayer-python/commit/23ee1280f621f695aa1606b1a729e94c3dbaa783)) +* **openai tracer:** object async_generator can't be used in 'await' expression ([ce13918](https://github.com/openlayer-ai/openlayer-python/commit/ce13918f523355b957f9d0f7a0371bb11367a7c6)) + + +### Chores + +* **lib:** expose async tracing methods ([af49b20](https://github.com/openlayer-ai/openlayer-python/commit/af49b2007bb80718ed0cd72ae13c56f532058f0e)) + + +### Documentation + +* update docstring ([b248a52](https://github.com/openlayer-ai/openlayer-python/commit/b248a52b842a558e2717d922fb84b351c47f6320)) + ## 0.2.0-alpha.61 (2025-04-25) Full Changelog: [v0.2.0-alpha.60...v0.2.0-alpha.61](https://github.com/openlayer-ai/openlayer-python/compare/v0.2.0-alpha.60...v0.2.0-alpha.61) diff --git a/pyproject.toml b/pyproject.toml index c4c668eb..7333be69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "openlayer" -version = "0.2.0-alpha.61" +version = "0.2.0-alpha.62" 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 2b3f4a02..e013ded0 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.2.0-alpha.61" # x-release-please-version +__version__ = "0.2.0-alpha.62" # x-release-please-version diff --git a/src/openlayer/lib/integrations/async_openai_tracer.py b/src/openlayer/lib/integrations/async_openai_tracer.py index 8576d575..4f1cfb94 100644 --- a/src/openlayer/lib/integrations/async_openai_tracer.py +++ b/src/openlayer/lib/integrations/async_openai_tracer.py @@ -1,4 +1,4 @@ -"""Module with methods used to trace async OpenAI / Azure OpenAI LLMs.""" +"""Module with methods used to trace async OpenAI/Azure OpenAI LLMs.""" import json import logging