Skip to content

Commit

Permalink
Release 1.13.4 (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmacd authored Mar 2, 2023
1 parent 1c2988d commit 703b9ae
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## Unreleased

## [1.13.4](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.13.3) - 2023-03-01)

- Minor performance improvement, one less allocation under the lock
when fingerprint collisions are being checked. [#407](https://github.com/lightstep/otel-launcher-go/pull/407)

## [1.13.3](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.13.3) - 2023-03-01)

- Fixes performance regressions introduced in version 1.13.1 and 1.12.1.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.13.3
1.13.4
6 changes: 3 additions & 3 deletions 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
go 1.18

require (
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.13.3
github.com/lightstep/otel-launcher-go/pipelines v1.13.3
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.13.4
github.com/lightstep/otel-launcher-go/pipelines v1.13.4
github.com/sethvargo/go-envconfig v0.8.3
github.com/stretchr/testify v1.8.1
go.opentelemetry.io/otel v1.12.0
Expand All @@ -23,7 +23,7 @@ require (
github.com/golang/protobuf v1.5.2 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
github.com/lightstep/go-expohisto v1.0.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.13.3 // indirect
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.13.4 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // 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.13.3"
const version = "1.13.4"
2 changes: 1 addition & 1 deletion 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.18

require (
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.13.3
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.13.4
github.com/lightstep/otel-launcher-go/pipelines v1.8.0
go.opentelemetry.io/proto/otlp v0.19.0
)
Expand Down
4 changes: 2 additions & 2 deletions pipelines/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ require (
)

require (
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.13.3
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.13.3
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.13.4
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.13.4
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.35.0
)

Expand Down

0 comments on commit 703b9ae

Please sign in to comment.