From 568a061d2716ade267d9759d6fdf910a0817e082 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Thu, 17 Oct 2024 09:36:12 +0200 Subject: [PATCH] update CHANGELOG and bump version to 0.3.0 --- .../elastic-opentelemetry-instrumentation-openai/CHANGELOG.md | 4 ++++ .../src/opentelemetry/instrumentation/openai/version.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/instrumentation/elastic-opentelemetry-instrumentation-openai/CHANGELOG.md b/instrumentation/elastic-opentelemetry-instrumentation-openai/CHANGELOG.md index 685ff07..1363305 100644 --- a/instrumentation/elastic-opentelemetry-instrumentation-openai/CHANGELOG.md +++ b/instrumentation/elastic-opentelemetry-instrumentation-openai/CHANGELOG.md @@ -1,5 +1,9 @@ # Elastic OpenTelemetry Instrumentation OpenAI +## v0.3.0 + +- Delay loading of the openai module to close race condition with httpx instrumentation (#16) + ## v0.2.0 - Fix tracing of optional OpenAI client parameters (#12) diff --git a/instrumentation/elastic-opentelemetry-instrumentation-openai/src/opentelemetry/instrumentation/openai/version.py b/instrumentation/elastic-opentelemetry-instrumentation-openai/src/opentelemetry/instrumentation/openai/version.py index a90ab4b..4ed3c08 100644 --- a/instrumentation/elastic-opentelemetry-instrumentation-openai/src/opentelemetry/instrumentation/openai/version.py +++ b/instrumentation/elastic-opentelemetry-instrumentation-openai/src/opentelemetry/instrumentation/openai/version.py @@ -14,4 +14,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.2.0" +__version__ = "0.3.0"