From b9b1206ded77df966e7ad492a5deff6df987d393 Mon Sep 17 00:00:00 2001 From: Joshua MacDonald Date: Fri, 16 Jun 2023 15:06:23 -0700 Subject: [PATCH] Release version 1.18.1 (#482) * Release version 1.18.1 * retidy --- CHANGELOG.md | 4 ++++ VERSION | 2 +- go.mod | 6 +++--- launcher/version.go | 2 +- lightstep/sdk/metric/example/go.mod | 2 +- pipelines/go.mod | 4 ++-- 6 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 667350f4..9a7246ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## Unreleased +## [1.18.1](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.18.0) - 2023-06-16) + +- Modifies the exporter names used in the two OTel-Collector-based exporters. [#480](https://github.com/lightstep/otel-launcher-go/pull/480) + ## [1.18.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.18.0) - 2023-06-12) - Adds support for collector based exporting (using batch processor and otlp exporter) for otel-go traces. [#464](https://github.com/lightstep/otel-launcher-go/pull/464) diff --git a/VERSION b/VERSION index 84cc5294..ec6d649b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.18.0 +1.18.1 diff --git a/go.mod b/go.mod index 918063ee..8596062b 100644 --- a/go.mod +++ b/go.mod @@ -5,8 +5,8 @@ go 1.18 require ( github.com/f5/otel-arrow-adapter v0.0.0-20230612212022-445aac7c6ae8 github.com/google/go-cmp v0.5.9 - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.18.0 - github.com/lightstep/otel-launcher-go/pipelines v1.18.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.18.1 + github.com/lightstep/otel-launcher-go/pipelines v1.18.1 github.com/sethvargo/go-envconfig v0.8.3 github.com/stretchr/testify v1.8.4 go.opentelemetry.io/collector v0.79.0 @@ -55,7 +55,7 @@ require ( github.com/klauspost/cpuid/v2 v2.0.9 // indirect github.com/knadh/koanf v1.5.0 // indirect github.com/lightstep/go-expohisto v1.0.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.18.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.18.1 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect diff --git a/launcher/version.go b/launcher/version.go index ff3c08b6..070e5246 100644 --- a/launcher/version.go +++ b/launcher/version.go @@ -14,4 +14,4 @@ package launcher -const version = "1.18.0" +const version = "1.18.1" diff --git a/lightstep/sdk/metric/example/go.mod b/lightstep/sdk/metric/example/go.mod index d3528a44..045a966c 100644 --- a/lightstep/sdk/metric/example/go.mod +++ b/lightstep/sdk/metric/example/go.mod @@ -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.18.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.18.1 github.com/lightstep/otel-launcher-go/pipelines v1.8.0 go.opentelemetry.io/proto/otlp v0.20.0 ) diff --git a/pipelines/go.mod b/pipelines/go.mod index 98dcfb26..92b4681e 100644 --- a/pipelines/go.mod +++ b/pipelines/go.mod @@ -50,8 +50,8 @@ require ( ) require ( - github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.18.0 - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.18.0 + github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.18.1 + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.18.1 go.opentelemetry.io/collector v0.79.0 go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.39.0 )