Skip to content

Commit 63cd084

Browse files
authored
Prepare release 1.11.1 (#302)
1 parent 00dc01a commit 63cd084

File tree

7 files changed

+21
-9
lines changed

7 files changed

+21
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
strategy:
1313
matrix:
14-
go-version: [1.18.x]
14+
go-version: [1.19.x]
1515
name: Build
1616
runs-on: ubuntu-latest
1717
steps:

CHANGELOG.md

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

99
## Unreleased
1010

11+
## [1.11.1](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.11.0) - 2022-10-05
12+
13+
### Bug fixes
14+
15+
- Updates required for tests to pass with go-1.19.x.
16+
[#300](https://github.com/lightstep/otel-launcher-go/pull/300)
17+
18+
### Changed
19+
20+
- Print the metric name responsible for empty attributes
21+
[#298](https://github.com/lightstep/otel-launcher-go/pull/298)
22+
1123
## [1.11.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.11.0) - 2022-09-12
1224

1325
🛑 [BREAKING] The set of builtin, automatic metrics instrumentation

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.0
1+
1.11.1

go.mod

Lines changed: 3 additions & 3 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.11.0
7-
github.com/lightstep/otel-launcher-go/pipelines v1.11.0
6+
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.1
7+
github.com/lightstep/otel-launcher-go/pipelines v1.11.1
88
github.com/sethvargo/go-envconfig v0.8.2
99
github.com/stretchr/testify v1.8.0
1010
go.opentelemetry.io/otel v1.10.0
@@ -23,7 +23,7 @@ require (
2323
github.com/golang/protobuf v1.5.2 // indirect
2424
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
2525
github.com/kr/pretty v0.2.1 // indirect
26-
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.11.0 // indirect
26+
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.11.1 // indirect
2727
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
2828
github.com/pmezard/go-difflib v1.0.0 // indirect
2929
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect

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.11.0"
17+
const version = "1.11.1"

lightstep/sdk/metric/example/go.mod

Lines changed: 1 addition & 1 deletion
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.11.0
6+
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.1
77
github.com/lightstep/otel-launcher-go/pipelines v1.8.0
88
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.31.0
99
go.opentelemetry.io/proto/otlp v0.19.0

pipelines/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
require (
66
// Lightstep-alternate metric SDK
7-
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.0
7+
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.1
88

99
// Host and runtime instrumentation
1010
go.opentelemetry.io/contrib/instrumentation/host v0.33.0
@@ -56,7 +56,7 @@ require (
5656
google.golang.org/protobuf v1.28.1
5757
)
5858

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

6161
require (
6262
github.com/davecgh/go-spew v1.1.1 // indirect

0 commit comments

Comments
 (0)