Skip to content

Commit

Permalink
Prepare release 1.11.1 (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmacd authored Oct 5, 2022
1 parent 00dc01a commit 63cd084
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 9 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.18.x]
go-version: [1.19.x]
name: Build
runs-on: ubuntu-latest
steps:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## Unreleased

## [1.11.1](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.11.0) - 2022-10-05

### Bug fixes

- Updates required for tests to pass with go-1.19.x.
[#300](https://github.com/lightstep/otel-launcher-go/pull/300)

### Changed

- Print the metric name responsible for empty attributes
[#298](https://github.com/lightstep/otel-launcher-go/pull/298)

## [1.11.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.11.0) - 2022-09-12

🛑 [BREAKING] The set of builtin, automatic metrics instrumentation
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.0
1.11.1
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.11.0
github.com/lightstep/otel-launcher-go/pipelines v1.11.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.1
github.com/lightstep/otel-launcher-go/pipelines v1.11.1
github.com/sethvargo/go-envconfig v0.8.2
github.com/stretchr/testify v1.8.0
go.opentelemetry.io/otel v1.10.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/kr/pretty v0.2.1 // indirect
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.11.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.11.1 // 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.11.0"
const version = "1.11.1"
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.11.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.1
github.com/lightstep/otel-launcher-go/pipelines v1.8.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.31.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 @@ -4,7 +4,7 @@ go 1.18

require (
// Lightstep-alternate metric SDK
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.1

// Host and runtime instrumentation
go.opentelemetry.io/contrib/instrumentation/host v0.33.0
Expand Down Expand Up @@ -56,7 +56,7 @@ require (
google.golang.org/protobuf v1.28.1
)

require github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.11.0
require github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.11.1

require (
github.com/davecgh/go-spew v1.1.1 // indirect
Expand Down

0 comments on commit 63cd084

Please sign in to comment.