Skip to content

Commit

Permalink
Version Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kennytrytek-wf committed Feb 26, 2024
1 parent a98c592 commit 0f4f118
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.18.1

- Update `http` dependency.
- Log error on export failure instead of exiting.

## 0.18.0

- Dart 3 support, primarily through dependency version ranges
Expand Down
2 changes: 1 addition & 1 deletion lib/src/api/exporters/span_exporter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import '../../../api.dart' as api;

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

Expand Down
2 changes: 1 addition & 1 deletion lib/src/api/instrumentation_library.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// Represents versioning metadata for this library within applications
/// which use multiple implementations of OpenTelemetry.
// See https://github.com/open-telemetry/oteps/blob/main/text/0083-component.md#instrumentationlibrary
@Deprecated('This class will be removed in 0.18.0.')
@Deprecated('This class will be removed in 0.19.0.')
abstract class InstrumentationLibrary {
String get name;
String get version;
Expand Down
2 changes: 1 addition & 1 deletion lib/src/api/span_processors/span_processor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import '../../../api.dart' as api;

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

Expand Down
2 changes: 1 addition & 1 deletion lib/src/sdk/instrumentation_library.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import '../../api.dart' as api;

// Represents the instrumentation library.
@Deprecated(
'This class will be removed in 0.18.0. Use InstrumentationScope from SDK intead.')
'This class will be removed in 0.19.0. Use InstrumentationScope from SDK intead.')
class InstrumentationLibrary implements api.InstrumentationLibrary {
final String _name;
final String _version;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: opentelemetry
version: 0.18.0
version: 0.18.1
description: A framework for collecting traces from applications.
homepage: https://github.com/Workiva/opentelemetry-dart
environment:
Expand Down

0 comments on commit 0f4f118

Please sign in to comment.