diff --git a/content/en/docs/instrumentation/java/_index.md b/content/en/docs/instrumentation/java/_index.md index a887a638c0a4..73e97eed112d 100644 --- a/content/en/docs/instrumentation/java/_index.md +++ b/content/en/docs/instrumentation/java/_index.md @@ -46,7 +46,7 @@ using our BOM to keep the versions of the various components in sync. io.opentelemetry opentelemetry-bom - 1.15.0 + 1.16.0 pom import @@ -65,7 +65,7 @@ using our BOM to keep the versions of the various components in sync. ```kotlin dependencies { - implementation(platform("io.opentelemetry:opentelemetry-bom:1.15.0")) + implementation(platform("io.opentelemetry:opentelemetry-bom:1.16.0")) implementation("io.opentelemetry:opentelemetry-api") } ``` diff --git a/content/en/docs/instrumentation/java/automatic/annotations.md b/content/en/docs/instrumentation/java/automatic/annotations.md index 97e1641db2e1..c1d2440c85f7 100644 --- a/content/en/docs/instrumentation/java/automatic/annotations.md +++ b/content/en/docs/instrumentation/java/automatic/annotations.md @@ -21,7 +21,7 @@ library to use the `@WithSpan` annotation. io.opentelemetry opentelemetry-extension-annotations - 1.15.0 + 1.16.0 ``` @@ -30,7 +30,7 @@ library to use the `@WithSpan` annotation. ```groovy dependencies { - implementation('io.opentelemetry:opentelemetry-extension-annotations:1.15.0') + implementation('io.opentelemetry:opentelemetry-extension-annotations:1.16.0') } ```