Update to latest version (from 1.0.0) (#4361)

Not sure how frequently we want to update the docs like this, but it seemed that quite some time had passed.
This commit is contained in:
jason plumb 2021-10-19 15:24:11 -07:00 committed by GitHub
parent 17a85bbc22
commit e1b4054e52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -28,12 +28,12 @@ use the `@WithSpan` annotation, also include the `opentelemetry-extension-annota
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-api</artifactId>
<version>1.0.0</version>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-extension-annotations</artifactId>
<version>1.0.0</version>
<version>1.7.0</version>
</dependency>
</dependencies>
```
@ -42,8 +42,8 @@ use the `@WithSpan` annotation, also include the `opentelemetry-extension-annota
```groovy
dependencies {
implementation('io.opentelemetry:opentelemetry-api:1.0.0')
implementation('io.opentelemetry:opentelemetry-extension-annotations:1.0.0')
implementation('io.opentelemetry:opentelemetry-api:1.7.0')
implementation('io.opentelemetry:opentelemetry-extension-annotations:1.7.0')
}
```