From be0e900e799bf1268c0e977735204d462e6c4b17 Mon Sep 17 00:00:00 2001 From: Alex Boten Date: Thu, 24 Mar 2022 11:29:25 -0700 Subject: [PATCH] prepare 1.5.1 (#136) - tag `github.com/lightstep/otel-launcher-go/pipelines` and update go.mod for launcher --- CHANGELOG.md | 6 ++++++ VERSION | 2 +- go.mod | 2 +- launcher/version.go | 2 +- tools/tag_version.sh | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d05c64bf..bb20e850 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## Unreleased +## [1.5.1](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.5.1) - 2022-03-24 + +### 🧰 Bug fixes 🧰 + +- tag `github.com/lightstep/otel-launcher-go/pipelines` and update go.mod for launcher + ## [1.5.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.5.0) - 2022-03-18 ## 💡 Enhancements 💡 diff --git a/VERSION b/VERSION index bc80560f..26ca5946 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.0 +1.5.1 diff --git a/go.mod b/go.mod index cd72e18c..8f5a988f 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.16 require ( github.com/kr/text v0.2.0 // indirect - github.com/lightstep/otel-launcher-go/pipelines v0.0.0-20220106234948-aab622036bba + github.com/lightstep/otel-launcher-go/pipelines v1.5.1 github.com/sethvargo/go-envconfig v0.5.0 github.com/stretchr/testify v1.7.1 go.opentelemetry.io/otel v1.5.0 diff --git a/launcher/version.go b/launcher/version.go index 716798a6..c3a5e962 100644 --- a/launcher/version.go +++ b/launcher/version.go @@ -14,4 +14,4 @@ package launcher -const version = "1.5.0" +const version = "1.5.1" diff --git a/tools/tag_version.sh b/tools/tag_version.sh index 4c800541..25126725 100755 --- a/tools/tag_version.sh +++ b/tools/tag_version.sh @@ -23,4 +23,4 @@ fi echo $VERSION > ./VERSION sed -i '' "s/const version.*/const version = \"$VERSION\"/" ./launcher/version.go - +go get github.com/lightstep/otel-launcher-go/pipelines@v$VERSION