diff --git a/CHANGELOG.md b/CHANGELOG.md index c93f5c93..e14facaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,16 @@ ## Unreleased +## [1.0.0b14](https://github.com/microsoft/ApplicationInsights-Python/releases/tag/v1.0.0b14) - 2023-07-12 + - Upgrade to exporter 1.0.0b14 and OTel 1.18 ([#295](https://github.com/microsoft/ApplicationInsights-Python/pull/295)) - Enable Azure Core Tracing OpenTelemetry plugin ([#269](https://github.com/microsoft/ApplicationInsights-Python/pull/269)) - Fix connection string environment variable bug for manual instrumentation ([#302](https://github.com/microsoft/ApplicationInsights-Python/pull/302)) +- Update Azure Core Tracing OpenTelemetry plugin + ([#306](https://github.com/microsoft/ApplicationInsights-Python/pull/306)) ## [1.0.0b13](https://github.com/microsoft/ApplicationInsights-Python/releases/tag/v1.0.0b13) - 2023-06-14 diff --git a/azure-monitor-opentelemetry/azure/monitor/opentelemetry/_version.py b/azure-monitor-opentelemetry/azure/monitor/opentelemetry/_version.py index 55838b91..dd5862ef 100644 --- a/azure-monitor-opentelemetry/azure/monitor/opentelemetry/_version.py +++ b/azure-monitor-opentelemetry/azure/monitor/opentelemetry/_version.py @@ -4,4 +4,4 @@ # license information. # -------------------------------------------------------------------------- -VERSION = "1.0.0b13" +VERSION = "1.0.0b14" diff --git a/azure-monitor-opentelemetry/setup.py b/azure-monitor-opentelemetry/setup.py index e50d6219..e98aeeb2 100644 --- a/azure-monitor-opentelemetry/setup.py +++ b/azure-monitor-opentelemetry/setup.py @@ -84,7 +84,7 @@ }, python_requires=">=3.7", install_requires=[ - "azure-core-tracing-opentelemetry==1.0.0b9", + "azure-core-tracing-opentelemetry~=1.0.0b10", "azure-monitor-opentelemetry-exporter>=1.0.0b14", "opentelemetry-api==1.18.0", "opentelemetry-sdk==1.18.0",