Skip to content

Commit 0f4f118

Browse files
Version Bump
1 parent a98c592 commit 0f4f118

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.18.1
2+
3+
- Update `http` dependency.
4+
- Log error on export failure instead of exiting.
5+
16
## 0.18.0
27

38
- Dart 3 support, primarily through dependency version ranges

lib/src/api/exporters/span_exporter.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import '../../../api.dart' as api;
55

66
@Deprecated(
7-
'This class will be moved to the SDK package in v0.18.0. Use [SpanExporter] from SDK instead.')
7+
'This class will be moved to the SDK package in v0.19.0. Use [SpanExporter] from SDK instead.')
88
abstract class SpanExporter {
99
void export(List<api.Span> spans);
1010

lib/src/api/instrumentation_library.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// Represents versioning metadata for this library within applications
55
/// which use multiple implementations of OpenTelemetry.
66
// See https://github.com/open-telemetry/oteps/blob/main/text/0083-component.md#instrumentationlibrary
7-
@Deprecated('This class will be removed in 0.18.0.')
7+
@Deprecated('This class will be removed in 0.19.0.')
88
abstract class InstrumentationLibrary {
99
String get name;
1010
String get version;

lib/src/api/span_processors/span_processor.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import '../../../api.dart' as api;
55

66
@Deprecated(
7-
'This class will be moved to the SDK package in v0.18.0. Use [SpanExporter] from SDK instead.')
7+
'This class will be moved to the SDK package in v0.19.0. Use [SpanExporter] from SDK instead.')
88
abstract class SpanProcessor {
99
void onStart(api.Span span, api.Context parentContext);
1010

lib/src/sdk/instrumentation_library.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import '../../api.dart' as api;
55

66
// Represents the instrumentation library.
77
@Deprecated(
8-
'This class will be removed in 0.18.0. Use InstrumentationScope from SDK intead.')
8+
'This class will be removed in 0.19.0. Use InstrumentationScope from SDK intead.')
99
class InstrumentationLibrary implements api.InstrumentationLibrary {
1010
final String _name;
1111
final String _version;

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: opentelemetry
2-
version: 0.18.0
2+
version: 0.18.1
33
description: A framework for collecting traces from applications.
44
homepage: https://github.com/Workiva/opentelemetry-dart
55
environment:

0 commit comments

Comments
 (0)