diff --git a/instrumentation/elastic-opentelemetry-instrumentation-openai/CHANGELOG.md b/instrumentation/elastic-opentelemetry-instrumentation-openai/CHANGELOG.md index 943745c..fb6c40a 100644 --- a/instrumentation/elastic-opentelemetry-instrumentation-openai/CHANGELOG.md +++ b/instrumentation/elastic-opentelemetry-instrumentation-openai/CHANGELOG.md @@ -1,5 +1,11 @@ # Elastic OpenTelemetry Instrumentation OpenAI +## v0.6.1 + +- Handle message with developer role (#58) +- Decouple metrics from span recording, fixes running with `OTEL_SDK_DISABLED=true` (#56) +- Add examples and simplify test matrix (#46, Adrian Cole) + ## v0.6.0 - Trace GEN_AI_OPENAI_REQUEST_RESPONSE_FORMAT, GEN_AI_OPENAI_REQUEST_SEED, GEN_AI_OPENAI_REQUEST_SERVICE_TIER and GEN_AI_OPENAI_RESPONSE_SERVICE_TIER (#41) 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 c665d95..74ea943 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.6.0" +__version__ = "0.6.1"