Skip to content

Commit

Permalink
release 1.28.0 (#679)
Browse files Browse the repository at this point in the history
**Description:** Preps the release for 1.28.0

**Link to tracking Issue:** n/a

**Testing:** n/a

**Documentation:** n/a
  • Loading branch information
jaronoff97 authored Apr 12, 2024
1 parent d78841a commit 89f7b5d
Show file tree
Hide file tree
Showing 9 changed files with 80 additions and 64 deletions.
117 changes: 66 additions & 51 deletions CHANGELOG.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Once all the changes for a release have been merged to master, ensure the follow
## Publish Release

To make a release, do these steps with the new version:

1. Run `make ver=X.Y.Z version`
2. Update CHANGELOG.md
3. Merge changes
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.27.0
1.28.0
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/lightstep/otel-launcher-go
go 1.21

require (
github.com/lightstep/otel-launcher-go/pipelines v1.27.0
github.com/lightstep/otel-launcher-go/pipelines v1.28.0
github.com/sethvargo/go-envconfig v0.8.3
github.com/stretchr/testify v1.9.0
go.opentelemetry.io/otel v1.25.0
Expand Down Expand Up @@ -40,9 +40,9 @@ require (
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
github.com/knadh/koanf/v2 v2.1.1 // indirect
github.com/lightstep/go-expohisto v1.0.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.27.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.27.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.27.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.28.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.28.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.28.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/trace v1.25.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
Expand Down
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.27.0"
const version = "1.28.0"
4 changes: 2 additions & 2 deletions lightstep/sdk/metric/example/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/lightstep/otel-launcher-go/lightstep/sdk/metric/example
go 1.21

require (
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.27.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.28.0
github.com/lightstep/otel-launcher-go/pipelines v1.8.0
go.opentelemetry.io/proto/otlp v1.1.0
)
Expand Down Expand Up @@ -34,7 +34,7 @@ require (
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
github.com/knadh/koanf/v2 v2.1.1 // indirect
github.com/lightstep/go-expohisto v1.0.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.27.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.28.0 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
Expand Down
2 changes: 1 addition & 1 deletion lightstep/sdk/metric/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
github.com/golang/mock v1.6.0
github.com/google/go-cmp v0.6.0
github.com/lightstep/go-expohisto v1.0.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.27.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.28.0
github.com/open-telemetry/otel-arrow/collector/exporter/otelarrowexporter v0.21.0
github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.21.0
github.com/open-telemetry/otel-arrow/collector/receiver/otelarrowreceiver v0.21.0
Expand Down
2 changes: 1 addition & 1 deletion lightstep/sdk/trace/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.21

require (
github.com/google/go-cmp v0.6.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.27.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.28.0
github.com/open-telemetry/otel-arrow/collector/exporter/otelarrowexporter v0.21.0
github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.21.0
github.com/open-telemetry/otel-arrow/collector/receiver/otelarrowreceiver v0.21.0
Expand Down
6 changes: 3 additions & 3 deletions pipelines/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module github.com/lightstep/otel-launcher-go/pipelines
go 1.21

require (
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.27.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.27.0
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.28.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.28.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/trace v1.25.0

// For otelcol-based exporter configuration.
Expand Down Expand Up @@ -47,7 +47,7 @@ require (
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
github.com/knadh/koanf/v2 v2.1.1 // indirect
github.com/lightstep/go-expohisto v1.0.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.27.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.28.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
Expand Down

0 comments on commit 89f7b5d

Please sign in to comment.