Docs for 1.10.1 relesae (#4108)
* Update release documentation * Update version in docs * Update changelog
This commit is contained in:
parent
b2873186e3
commit
bd0b474d83
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## Version 1.11.0 (unreleased):
|
||||
|
||||
---
|
||||
## Version 1.10.1 2022-01-21:
|
||||
|
||||
### Bugfixes
|
||||
|
||||
- Fix issue preventing registration of PrometheusCollector with SDK
|
||||
- Allow retry policy to be set for OkHttpGrpcExporter
|
||||
|
||||
---
|
||||
|
||||
## Version 1.10.0 2022-01-07:
|
||||
|
|
|
|||
36
README.md
36
README.md
|
|
@ -81,7 +81,7 @@ dependency versions in sync.
|
|||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-bom</artifactId>
|
||||
<version>1.10.0</version>
|
||||
<version>1.10.1</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
|
@ -100,7 +100,7 @@ dependency versions in sync.
|
|||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation platform("io.opentelemetry:opentelemetry-bom:1.10.0")
|
||||
implementation platform("io.opentelemetry:opentelemetry-bom:1.10.1")
|
||||
implementation('io.opentelemetry:opentelemetry-api')
|
||||
}
|
||||
```
|
||||
|
|
@ -109,8 +109,8 @@ Note that if you want to use any artifacts that have not fully stabilized yet (s
|
|||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation platform("io.opentelemetry:opentelemetry-bom:1.10.0")
|
||||
implementation platform('io.opentelemetry:opentelemetry-bom-alpha:1.10.0-alpha')
|
||||
implementation platform("io.opentelemetry:opentelemetry-bom:1.10.1")
|
||||
implementation platform('io.opentelemetry:opentelemetry-bom-alpha:1.10.1-alpha')
|
||||
|
||||
implementation('io.opentelemetry:opentelemetry-api')
|
||||
implementation('io.opentelemetry:opentelemetry-api-metrics')
|
||||
|
|
@ -186,20 +186,20 @@ This is a **current** feature status list:
|
|||
|
||||
| Component | Version |
|
||||
| --------------------------- | ------- |
|
||||
| Trace API | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
|
||||
| Trace SDK | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
|
||||
| Context | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
|
||||
| Baggage | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
|
||||
| Jaeger Trace Exporter | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
|
||||
| Zipkin Trace Exporter | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
|
||||
| OTLP Exporter (Spans) | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
|
||||
| Metrics API | v<!--VERSION_STABLE-->1.10.0<!--/VERSION_STABLE--> |
|
||||
| OTLP Exporter (Metrics) | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||
| Metrics SDK | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||
| Logs SDK | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||
| Prometheus Metrics Exporter | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||
| OpenTracing Bridge | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||
| OpenCensus Bridge | v<!--VERSION_UNSTABLE-->1.10.0-alpha<!--/VERSION_UNSTABLE--> |
|
||||
| Trace API | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
|
||||
| Trace SDK | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
|
||||
| Context | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
|
||||
| Baggage | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
|
||||
| Jaeger Trace Exporter | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
|
||||
| Zipkin Trace Exporter | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
|
||||
| OTLP Exporter (Spans) | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
|
||||
| Metrics API | v<!--VERSION_STABLE-->1.10.1<!--/VERSION_STABLE--> |
|
||||
| OTLP Exporter (Metrics) | v<!--VERSION_UNSTABLE-->1.10.1-alpha<!--/VERSION_UNSTABLE--> |
|
||||
| Metrics SDK | v<!--VERSION_UNSTABLE-->1.10.1-alpha<!--/VERSION_UNSTABLE--> |
|
||||
| Logs SDK | v<!--VERSION_UNSTABLE-->1.10.1-alpha<!--/VERSION_UNSTABLE--> |
|
||||
| Prometheus Metrics Exporter | v<!--VERSION_UNSTABLE-->1.10.1-alpha<!--/VERSION_UNSTABLE--> |
|
||||
| OpenTracing Bridge | v<!--VERSION_UNSTABLE-->1.10.1-alpha<!--/VERSION_UNSTABLE--> |
|
||||
| OpenCensus Bridge | v<!--VERSION_UNSTABLE-->1.10.1-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
|
||||
|
|
|
|||
10
RELEASING.md
10
RELEASING.md
|
|
@ -84,6 +84,16 @@ git fetch upstream v1.2.x
|
|||
git checkout upstream/v1.2.x
|
||||
```
|
||||
|
||||
If the release branch does not exist, checkout the tag, create the release branch from it, and push
|
||||
it to the `upstream`.
|
||||
|
||||
```
|
||||
git fetch upstream v1.2.0
|
||||
git checkout v1.2.0
|
||||
git checkout -b v1.2.x
|
||||
git push upstream v1.2.x
|
||||
```
|
||||
|
||||
Apply cherrypicks manually and commit. It is ok to apply multiple cherrypicks in a single commit.
|
||||
Use a commit message such as "Manual cherrypick for commits commithash1, commithash2".
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue