Update the docs for the 0.11.0 release (#2097)
* update the docs for the 0.11.0 release * also update the examples dependency, since no changes are necessary
This commit is contained in:
parent
bd652270dd
commit
ec7884fbf0
16
CHANGELOG.md
16
CHANGELOG.md
|
|
@ -4,6 +4,22 @@
|
|||
|
||||
### API
|
||||
|
||||
#### Miscellaneous
|
||||
|
||||
- The `toBuilder()` method on the OpenTelemetry class has been deprecated and will be removed in 0.12.0.
|
||||
|
||||
### SDK
|
||||
|
||||
#### Miscellaneous
|
||||
|
||||
- The `toBuilder()` method on the OpenTelemetrySdk class has been deprecated and will be removed in 0.12.0.
|
||||
|
||||
-----
|
||||
|
||||
## Version 0.11.0 - 2010-11-18
|
||||
|
||||
### API
|
||||
|
||||
#### Breaking changes:
|
||||
|
||||
- The SPI interfaces have moved to a package (not a module) separate from the API packages, and now live in `io.opentelemetry.spi.*` package namespace.
|
||||
|
|
|
|||
28
README.md
28
README.md
|
|
@ -52,7 +52,7 @@ Published releases are available on maven central.
|
|||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-api</artifactId>
|
||||
<version>0.10.0</version>
|
||||
<version>0.11.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
```
|
||||
|
|
@ -61,7 +61,7 @@ Published releases are available on maven central.
|
|||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation('io.opentelemetry:opentelemetry-api:0.10.0')
|
||||
implementation('io.opentelemetry:opentelemetry-api:0.11.0')
|
||||
}
|
||||
```
|
||||
|
||||
|
|
@ -83,7 +83,7 @@ Snapshots based out the `master` branch are available for `opentelemetry-api`, `
|
|||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-api</artifactId>
|
||||
<version>0.11.0-SNAPSHOT</version>
|
||||
<version>0.12.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
```
|
||||
|
|
@ -96,7 +96,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation('io.opentelemetry:opentelemetry-api:0.11.0-SNAPSHOT')
|
||||
implementation('io.opentelemetry:opentelemetry-api:0.12.0-SNAPSHOT')
|
||||
}
|
||||
```
|
||||
|
||||
|
|
@ -115,16 +115,16 @@ This is a **current** feature status list:
|
|||
|
||||
| Component | Version |
|
||||
| --------------------------- | ------- |
|
||||
| Tracing API | v<!--VERSION_STABLE-->0.10.0<!--/VERSION_STABLE--> |
|
||||
| Tracing SDK | v<!--VERSION_STABLE-->0.10.0<!--/VERSION_STABLE--> |
|
||||
| Metrics API | v<!--VERSION_STABLE-->0.10.0<!--/VERSION_STABLE--> |
|
||||
| Metrics SDK | v<!--VERSION_STABLE-->0.10.0<!--/VERSION_STABLE--> |
|
||||
| OTLP Exporter | v<!--VERSION_STABLE-->0.10.0<!--/VERSION_STABLE--> |
|
||||
| Jaeger Trace Exporter | v<!--VERSION_STABLE-->0.10.0<!--/VERSION_STABLE--> |
|
||||
| Zipkin Trace Exporter | v<!--VERSION_STABLE-->0.10.0<!--/VERSION_STABLE--> |
|
||||
| Prometheus Metrics Exporter | v<!--VERSION_STABLE-->0.10.0<!--/VERSION_STABLE--> |
|
||||
| Context Propagation | v<!--VERSION_STABLE-->0.10.0<!--/VERSION_STABLE--> |
|
||||
| OpenTracing Bridge | v<!--VERSION_STABLE-->0.10.0<!--/VERSION_STABLE--> |
|
||||
| Tracing API | v<!--VERSION_STABLE-->0.11.0<!--/VERSION_STABLE--> |
|
||||
| Tracing SDK | v<!--VERSION_STABLE-->0.11.0<!--/VERSION_STABLE--> |
|
||||
| Metrics API | v<!--VERSION_STABLE-->0.11.0<!--/VERSION_STABLE--> |
|
||||
| Metrics SDK | v<!--VERSION_STABLE-->0.11.0<!--/VERSION_STABLE--> |
|
||||
| OTLP Exporter | v<!--VERSION_STABLE-->0.11.0<!--/VERSION_STABLE--> |
|
||||
| Jaeger Trace Exporter | v<!--VERSION_STABLE-->0.11.0<!--/VERSION_STABLE--> |
|
||||
| Zipkin Trace Exporter | v<!--VERSION_STABLE-->0.11.0<!--/VERSION_STABLE--> |
|
||||
| Prometheus Metrics Exporter | v<!--VERSION_STABLE-->0.11.0<!--/VERSION_STABLE--> |
|
||||
| Context Propagation | v<!--VERSION_STABLE-->0.11.0<!--/VERSION_STABLE--> |
|
||||
| OpenTracing Bridge | v<!--VERSION_STABLE-->0.11.0<!--/VERSION_STABLE--> |
|
||||
| OpenCensus Bridge | N/A |
|
||||
|
||||
See the project [milestones](https://github.com/open-telemetry/opentelemetry-java/milestones)
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ subprojects {
|
|||
version = "0.1.0-SNAPSHOT"
|
||||
|
||||
ext {
|
||||
opentelemetryVersion = "0.10.0"
|
||||
opentelemetryVersion = "0.11.0"
|
||||
grpcVersion = '1.30.2'
|
||||
protobufVersion = '3.11.4'
|
||||
protocVersion = protobufVersion
|
||||
|
|
|
|||
|
|
@ -22,14 +22,14 @@ For Maven, add the following to your `pom.xml`:
|
|||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-sdk-extension-zpages</artifactId>
|
||||
<version>0.10.0</version>
|
||||
<version>0.12.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
```
|
||||
|
||||
For Gradle, add the following to your dependencies:
|
||||
```groovy
|
||||
implementation 'io.opentelemetry:opentelemetry-sdk-extension-zpages:0.10.0'
|
||||
implementation 'io.opentelemetry:opentelemetry-sdk-extension-zpages:0.12.0-SNAPSHOT'
|
||||
```
|
||||
|
||||
### Register the zPages
|
||||
|
|
|
|||
Loading…
Reference in New Issue