Skip to content

Commit

Permalink
Release v1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jmacd committed Jul 28, 2022
1 parent 64bbace commit f9b53ff
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 6 deletions.
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

0 comments on commit f9b53ff

Please sign in to comment.