Skip to content

Commit

Permalink
Release version 1.21 (#542)
Browse files Browse the repository at this point in the history
**Description:** Release includes support for go-1.21 runtime/metrics
and udpated OTel Collector dependencies.
  • Loading branch information
jmacd authored Nov 3, 2023
1 parent 5a010fb commit 69c6e8c
Show file tree
Hide file tree
Showing 15 changed files with 181 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build:
strategy:
matrix:
go-version: [1.20.5]
go-version: [1.21.3]
name: Build
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## Unreleased

## [1.21.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.21.0) - 2023-11-03)

- Release based on OTel Collector v0.88 dependencies. [#539](https://github.com/lightstep/otel-launcher-go/pull/539)
- Release based on Go 1.21, including new runtime/metrics. [#537](https://github.com/lightstep/otel-launcher-go/pull/537)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.0
1.21.0
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/lightstep/otel-launcher-go

go 1.20
go 1.21

require (
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.20.0
github.com/lightstep/otel-launcher-go/pipelines v1.20.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.21.0
github.com/lightstep/otel-launcher-go/pipelines v1.21.0
github.com/sethvargo/go-envconfig v0.8.3
github.com/stretchr/testify v1.8.4
go.opentelemetry.io/otel v1.19.0
Expand Down Expand Up @@ -42,8 +42,8 @@ require (
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
github.com/knadh/koanf/v2 v2.0.1 // indirect
github.com/lightstep/go-expohisto v1.0.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.20.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.20.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.21.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.21.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect
Expand Down
33 changes: 33 additions & 0 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion launcher/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

package launcher

const version = "1.20.0"
const version = "1.21.0"
2 changes: 1 addition & 1 deletion lightstep/instrumentation/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/lightstep/otel-launcher-go/lightstep/instrumentation

go 1.20
go 1.21

require (
github.com/shirou/gopsutil/v3 v3.22.9
Expand Down
6 changes: 3 additions & 3 deletions lightstep/sdk/metric/example/go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/lightstep/otel-launcher-go/lightstep/sdk/metric/example

go 1.20
go 1.21

require (
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.20.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.21.0
github.com/lightstep/otel-launcher-go/pipelines v1.8.0
go.opentelemetry.io/proto/otlp v1.0.0
)
Expand Down Expand Up @@ -35,7 +35,7 @@ require (
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
github.com/knadh/koanf/v2 v2.0.1 // indirect
github.com/lightstep/go-expohisto v1.0.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.20.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.21.0 // indirect
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
Expand Down
33 changes: 33 additions & 0 deletions lightstep/sdk/metric/example/go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lightstep/sdk/metric/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/lightstep/otel-launcher-go/lightstep/sdk/metric

go 1.20
go 1.21

require (
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13
Expand All @@ -9,7 +9,7 @@ require (
github.com/golang/mock v1.6.0
github.com/google/go-cmp v0.5.9
github.com/lightstep/go-expohisto v1.0.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.20.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.21.0
github.com/open-telemetry/otel-arrow/collector v0.6.0
github.com/stretchr/testify v1.8.4
go.opentelemetry.io/collector/component v0.88.0
Expand Down
29 changes: 29 additions & 0 deletions lightstep/sdk/metric/go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lightstep/sdk/trace/go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/lightstep/otel-launcher-go/lightstep/sdk/trace

go 1.20
go 1.21

require (
github.com/google/go-cmp v0.5.9
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.20.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.21.0
github.com/open-telemetry/otel-arrow/collector v0.6.0
github.com/stretchr/testify v1.8.4
go.opentelemetry.io/collector/component v0.88.0
Expand Down
31 changes: 31 additions & 0 deletions lightstep/sdk/trace/go.sum

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions pipelines/go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/lightstep/otel-launcher-go/pipelines

go 1.20
go 1.21

require (
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.20.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.20.0
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.21.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.21.0
go.opentelemetry.io/collector/config/configtls v0.88.0
// Host and runtime instrumentation
go.opentelemetry.io/contrib/instrumentation/host v0.45.0
Expand Down Expand Up @@ -55,7 +55,7 @@ require (
github.com/knadh/koanf/maps v0.1.1 // indirect
github.com/knadh/koanf/v2 v2.0.1 // indirect
github.com/lightstep/go-expohisto v1.0.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.20.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.21.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect
Expand Down
Loading

0 comments on commit 69c6e8c

Please sign in to comment.