Skip to content

Commit a56cd59

Browse files
authored
Retract 1.18.2, release 1.18.3 (#492)
1 parent 96f4656 commit a56cd59

File tree

8 files changed

+25
-15
lines changed

8 files changed

+25
-15
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
88

99
## Unreleased
1010

11-
## [1.18.2](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.18.0) - 2023-06-21)
11+
## [1.18.3](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.18.3) - 2023-06-21)
12+
13+
- Re-release. [#492](https://github.com/lightstep/otel-launcher-go/pull/492)
14+
15+
## [1.18.2](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.18.2) - 2023-06-21)
1216

1317
- Support for multi-resource export pipelines as a special case. [#490](https://github.com/lightstep/otel-launcher-go/pull/490)
1418

15-
## [1.18.1](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.18.0) - 2023-06-16)
19+
## [1.18.1](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.18.1) - 2023-06-16)
1620

1721
- Modifies the exporter names used in the two OTel-Collector-based exporters. [#480](https://github.com/lightstep/otel-launcher-go/pull/480)
1822

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.18.2
1+
1.18.3

go.mod

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/lightstep/otel-launcher-go
33
go 1.18
44

55
require (
6-
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.18.2
7-
github.com/lightstep/otel-launcher-go/pipelines v1.18.2
6+
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.18.3
7+
github.com/lightstep/otel-launcher-go/pipelines v1.18.3
88
github.com/sethvargo/go-envconfig v0.8.3
99
github.com/stretchr/testify v1.8.4
1010
go.opentelemetry.io/otel v1.16.0
@@ -42,8 +42,8 @@ require (
4242
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
4343
github.com/knadh/koanf v1.5.0 // indirect
4444
github.com/lightstep/go-expohisto v1.0.0 // indirect
45-
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.18.2 // indirect
46-
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.18.2 // indirect
45+
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.18.3 // indirect
46+
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.18.3 // indirect
4747
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
4848
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect
4949
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect
@@ -115,3 +115,6 @@ replace github.com/lightstep/otel-launcher-go/lightstep/instrumentation => ./lig
115115
// default temporality preference; use 1.10.1 instead or consider
116116
// upgrading to a 2.x release.
117117
retract v1.10.0
118+
119+
// 1.18.2 has a broken lightstep/sdk/internal dependency.
120+
retract v1.18.2

launcher/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
package launcher
1616

17-
const version = "1.18.2"
17+
const version = "1.18.3"

lightstep/sdk/metric/example/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/lightstep/otel-launcher-go/lightstep/sdk/metric/example
33
go 1.18
44

55
require (
6-
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.18.2
6+
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.18.3
77
github.com/lightstep/otel-launcher-go/pipelines v1.8.0
88
go.opentelemetry.io/proto/otlp v0.20.0
99
)
@@ -35,7 +35,7 @@ require (
3535
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
3636
github.com/knadh/koanf v1.5.0 // indirect
3737
github.com/lightstep/go-expohisto v1.0.0 // indirect
38-
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.18.2 // indirect
38+
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.18.3 // indirect
3939
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect
4040
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect
4141
github.com/mitchellh/copystructure v1.2.0 // indirect

lightstep/sdk/metric/go.mod

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/golang/mock v1.6.0
1111
github.com/google/go-cmp v0.5.9
1212
github.com/lightstep/go-expohisto v1.0.0
13-
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.18.2
13+
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.18.3
1414
github.com/stretchr/testify v1.8.4
1515
go.opentelemetry.io/collector v0.79.0
1616
go.opentelemetry.io/collector/component v0.79.0
@@ -86,3 +86,6 @@ require (
8686
)
8787

8888
replace github.com/lightstep/otel-launcher-go/lightstep/sdk/internal => ../internal
89+
90+
// 1.18.2 has a broken lightstep/sdk/internal dependency.
91+
retract v1.18.2

lightstep/sdk/trace/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.18
55
require (
66
github.com/f5/otel-arrow-adapter v0.0.0-20230612212022-445aac7c6ae8
77
github.com/google/go-cmp v0.5.9
8-
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.18.2
8+
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.18.3
99
github.com/stretchr/testify v1.8.4
1010
go.opentelemetry.io/collector v0.79.0
1111
go.opentelemetry.io/collector/component v0.79.0

pipelines/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ require (
5050
)
5151

5252
require (
53-
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.18.2
54-
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.18.2
53+
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.18.3
54+
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.18.3
5555
go.opentelemetry.io/collector v0.79.0
5656
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.39.0
5757
)
@@ -79,7 +79,7 @@ require (
7979
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
8080
github.com/knadh/koanf v1.5.0 // indirect
8181
github.com/lightstep/go-expohisto v1.0.0 // indirect
82-
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.18.2 // indirect
82+
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.18.3 // indirect
8383
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect
8484
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect
8585
github.com/mitchellh/copystructure v1.2.0 // indirect

0 commit comments

Comments
 (0)