Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.8.1 #228

Merged
merged 1 commit into from
Jul 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## Unreleased

## [1.8.1](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.8.1) - 2022-07-28

### 💡 Enhancements

- Optimize the synchronous instrument fast path [#226](https://github.com/lightstep/otel-launcher-go/pull/226)
- Exponential histogram package is externally-usable [#222](https://github.com/lightstep/otel-launcher-go/pull/222)
- Add an example for stand-alone use of Lightstep metrics SDK [#219](https://github.com/lightstep/otel-launcher-go/pull/219)

## [1.8.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.8.0) - 2022-07-13

### 💡 Enhancements
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.0
1.8.1
4 changes: 2 additions & 2 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.8.0
github.com/lightstep/otel-launcher-go/pipelines v1.8.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.8.1
github.com/lightstep/otel-launcher-go/pipelines v1.8.1
github.com/sethvargo/go-envconfig v0.8.1
github.com/stretchr/testify v1.8.0
go.opentelemetry.io/otel v1.8.0
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.8.0"
const version = "1.8.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.8.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.8.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.18.0
Expand Down
2 changes: 1 addition & 1 deletion 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.8.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.8.1

// Host and runtime instrumentation
go.opentelemetry.io/contrib/instrumentation/host v0.33.0
Expand Down
1 change: 1 addition & 0 deletions tools/tag_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ echo $VERSION > ./VERSION
sed -i '' "s/const version.*/const version = \"$VERSION\"/" ./launcher/version.go

(cd pipelines && go get github.com/lightstep/otel-launcher-go/lightstep/sdk/metric@v$VERSION)
(cd lightstep/sdk/metric/example && go get github.com/lightstep/otel-launcher-go/lightstep/sdk/metric@v$VERSION)

go get github.com/lightstep/otel-launcher-go/pipelines@v$VERSION