Skip to content

Commit dc85963

Browse files
authored
Merge branch 'main' into http-json-example
2 parents 61a6e5e + d0c8105 commit dc85963

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

opentelemetry-otlp/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ now use `.with_resource(RESOURCE::default())` to configure Resource when using
1414
`OtlpLogPipeline`.
1515
- **Breaking** The methods `OtlpTracePipeline::install_simple()` and `OtlpTracePipeline::install_batch()` would now return `TracerProvider` instead of `Tracer`.
1616
These methods would also no longer set the global tracer provider. It would now be the responsibility of users to set it by calling `global::set_tracer_provider(tracer_provider.clone());`. Refer to the [basic-otlp](https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-otlp/examples/basic-otlp/src/main.rs) and [basic-otlp-http](https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-otlp/examples/basic-otlp-http/src/main.rs) examples on how to initialize OTLP Trace Exporter.
17+
- Bump MSRV to 1.70 [#1840](https://github.com/open-telemetry/opentelemetry-rust/pull/1840)
18+
1719

1820
## v0.16.0
1921

opentelemetry-otlp/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = [
1313
keywords = ["opentelemetry", "otlp", "logging", "tracing", "metrics"]
1414
license = "Apache-2.0"
1515
edition = "2021"
16-
rust-version = "1.65"
16+
rust-version = "1.70"
1717
autotests = false
1818

1919
[[test]]

opentelemetry-otlp/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ can easily instrument your applications or systems, no matter their language,
3030
infrastructure, or runtime environment. Crucially, the storage and visualization
3131
of telemetry is intentionally left to other tools.
3232

33-
*Compiler support: [requires `rustc` 1.65+][msrv]*
33+
*Compiler support: [requires `rustc` 1.70+][msrv]*
3434

3535
[Prometheus]: https://prometheus.io
3636
[Jaeger]: https://www.jaegertracing.io
@@ -43,7 +43,7 @@ See [docs](https://docs.rs/opentelemetry-otlp).
4343
## Supported Rust Versions
4444

4545
OpenTelemetry is built against the latest stable release. The minimum supported
46-
version is 1.65. The current OpenTelemetry version is not guaranteed to build
46+
version is 1.70. The current OpenTelemetry version is not guaranteed to build
4747
on Rust versions earlier than the minimum supported version.
4848

4949
The current stable Rust compiler and the three most recent minor versions

0 commit comments

Comments
 (0)