Skip to content

Commit

Permalink
Update the documention for 0.17.0 (#2885)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkwatson authored Feb 18, 2021
1 parent a91e239 commit ded7256
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 25 deletions.
8 changes: 4 additions & 4 deletions QUICKSTART.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ The following presents an example of an outgoing HTTP request using `HttpURLConn

```java
// Tell OpenTelemetry to inject the context in the HTTP headers
TextMapPropagator.Setter<HttpURLConnection> setter =
new TextMapPropagator.Setter<HttpURLConnection>() {
TextMapSetter<HttpURLConnection> setter =
new TextMapSetter<HttpURLConnection>() {
@Override
public void set(HttpURLConnection carrier, String key, String value) {
// Insert the context as Header
Expand Down Expand Up @@ -238,8 +238,8 @@ The following presents an example of processing an incoming HTTP request using
[HttpExchange](https://docs.oracle.com/javase/8/docs/jre/api/net/httpserver/spec/com/sun/net/httpserver/HttpExchange.html).

```java
TextMapPropagator.Getter<HttpExchange> getter =
new TextMapPropagator.Getter<>() {
TextMapGetter<HttpExchange> getter =
new TextMapGetter<>() {
@Override
public String get(HttpExchange carrier, String key) {
if (carrier.getRequestHeaders().containsKey(key)) {
Expand Down
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependency versions in sync.
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-bom</artifactId>
<version>0.16.0</version>
<version>0.17.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -82,7 +82,7 @@ dependency versions in sync.

```groovy
dependencies {
implementation platform("io.opentelemetry:opentelemetry-bom:0.16.0")
implementation platform("io.opentelemetry:opentelemetry-bom:0.17.0")
implementation('io.opentelemetry:opentelemetry-api')
}
```
Expand All @@ -107,7 +107,7 @@ We strongly recommend using our published BOM to keep all dependency versions in
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-bom</artifactId>
<version>0.17.0-SNAPSHOT</version>
<version>0.18.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -150,19 +150,19 @@ This is a **current** feature status list:

| Component | Version |
| --------------------------- | ------- |
| Trace API | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
| Trace SDK | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
| Context | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
| Baggage | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
| Jaeger Trace Exporter | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
| Zipkin Trace Exporter | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
| OTLP Exporter (Spans) | v<!--VERSION_STABLE-->0.16.0<!--/VERSION_STABLE--> |
| OTLP Exporter (Metrics) | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
| Metrics API | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
| Metrics SDK | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
| Prometheus Metrics Exporter | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
| OpenTracing Bridge | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
| OpenCensus Bridge | v<!--VERSION_UNSTABLE-->0.16.0-alpha<!--/VERSION_UNSTABLE--> |
| Trace API | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
| Trace SDK | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
| Context | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
| Baggage | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
| Jaeger Trace Exporter | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
| Zipkin Trace Exporter | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
| OTLP Exporter (Spans) | v<!--VERSION_STABLE-->0.17.0<!--/VERSION_STABLE--> |
| OTLP Exporter (Metrics) | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |
| Metrics API | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |
| Metrics SDK | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |
| Prometheus Metrics Exporter | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |
| OpenTracing Bridge | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |
| OpenCensus Bridge | v<!--VERSION_UNSTABLE-->0.17.0-alpha<!--/VERSION_UNSTABLE--> |

See the project [milestones](https://github.com/open-telemetry/opentelemetry-java/milestones)
for details on upcoming releases. The dates and features described in issues
Expand Down
5 changes: 0 additions & 5 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ After it is merged, Run the patch release workflow again, but leave the commits
The release will be made with the current state of the release branch, which is what you prepared
above.

## Release candidates

Release candidate artifacts are released using the same process described above. The version schema for release candidates
is`v1.2.3-RC$`, where `$` denotes a release candidate version, e.g. `v1.2.3-RC1`.

## Credentials

The following credentials are required for publishing (and automatically set in Circle CI):
Expand Down

0 comments on commit ded7256

Please sign in to comment.