From 6c6184e735d1a360a4dfcedfdbce3215a9547a59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Saint-Roch?= Date: Thu, 1 Feb 2024 11:45:18 +0100 Subject: [PATCH] version: Release v0.16.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Loïc Saint-Roch --- integration/bucket/go.mod | 4 +--- integration/clickhouse/go.mod | 4 +--- integration/nats/go.mod | 4 +--- integration/openfeature/go.mod | 4 +--- integration/postgres/go.mod | 4 +--- integration/rest/go.mod | 4 +--- integration/temporal/go.mod | 4 +--- integration/vault/go.mod | 4 +--- scripts/release.sh | 2 +- 9 files changed, 9 insertions(+), 25 deletions(-) diff --git a/integration/bucket/go.mod b/integration/bucket/go.mod index 1bb453a..6680fde 100755 --- a/integration/bucket/go.mod +++ b/integration/bucket/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/stretchr/testify v1.8.4 - go.nunchi.studio/helix v0.16.0 + go.nunchi.studio/helix v0.16.1 gocloud.dev v0.36.0 ) @@ -88,5 +88,3 @@ require ( google.golang.org/protobuf v1.32.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -replace go.nunchi.studio/helix => ../../ diff --git a/integration/clickhouse/go.mod b/integration/clickhouse/go.mod index 72c9424..6337c3b 100755 --- a/integration/clickhouse/go.mod +++ b/integration/clickhouse/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/ClickHouse/clickhouse-go/v2 v2.17.1 github.com/stretchr/testify v1.8.4 - go.nunchi.studio/helix v0.16.0 + go.nunchi.studio/helix v0.16.1 ) require ( @@ -45,5 +45,3 @@ require ( google.golang.org/protobuf v1.32.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -replace go.nunchi.studio/helix => ../../ diff --git a/integration/nats/go.mod b/integration/nats/go.mod index 0925f14..368dc2b 100755 --- a/integration/nats/go.mod +++ b/integration/nats/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/nats-io/nats.go v1.32.0 github.com/stretchr/testify v1.8.4 - go.nunchi.studio/helix v0.16.0 + go.nunchi.studio/helix v0.16.1 go.opentelemetry.io/otel v1.22.0 ) @@ -38,5 +38,3 @@ require ( google.golang.org/protobuf v1.32.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -replace go.nunchi.studio/helix => ../../ diff --git a/integration/openfeature/go.mod b/integration/openfeature/go.mod index 73012b5..8fb8294 100755 --- a/integration/openfeature/go.mod +++ b/integration/openfeature/go.mod @@ -8,7 +8,7 @@ require ( github.com/open-feature/go-sdk-contrib/providers/go-feature-flag v0.1.33 github.com/stretchr/testify v1.8.4 github.com/thomaspoignant/go-feature-flag v1.22.0 - go.nunchi.studio/helix v0.16.0 + go.nunchi.studio/helix v0.16.1 go.opentelemetry.io/otel v1.22.0 go.opentelemetry.io/otel/trace v1.22.0 ) @@ -45,5 +45,3 @@ require ( google.golang.org/protobuf v1.32.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -replace go.nunchi.studio/helix => ../../ diff --git a/integration/postgres/go.mod b/integration/postgres/go.mod index 70f1b9e..2f2008f 100755 --- a/integration/postgres/go.mod +++ b/integration/postgres/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/jackc/pgx/v5 v5.5.2 github.com/stretchr/testify v1.8.4 - go.nunchi.studio/helix v0.16.0 + go.nunchi.studio/helix v0.16.1 ) require ( @@ -39,5 +39,3 @@ require ( google.golang.org/protobuf v1.32.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -replace go.nunchi.studio/helix => ../../ diff --git a/integration/rest/go.mod b/integration/rest/go.mod index 86a57d1..93461e5 100755 --- a/integration/rest/go.mod +++ b/integration/rest/go.mod @@ -8,7 +8,7 @@ require ( github.com/uptrace/bunrouter v1.0.21 github.com/uptrace/bunrouter/extra/bunrouterotel v1.0.21 github.com/uptrace/bunrouter/extra/reqlog v1.0.21 - go.nunchi.studio/helix v0.16.0 + go.nunchi.studio/helix v0.16.1 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 ) @@ -50,5 +50,3 @@ require ( google.golang.org/protobuf v1.32.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -replace go.nunchi.studio/helix => ../../ diff --git a/integration/temporal/go.mod b/integration/temporal/go.mod index d175a07..02ff30b 100755 --- a/integration/temporal/go.mod +++ b/integration/temporal/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/stretchr/testify v1.8.4 - go.nunchi.studio/helix v0.16.0 + go.nunchi.studio/helix v0.16.1 go.opentelemetry.io/otel v1.22.0 go.opentelemetry.io/otel/trace v1.22.0 go.temporal.io/api v1.26.0 @@ -50,5 +50,3 @@ require ( google.golang.org/protobuf v1.32.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -replace go.nunchi.studio/helix => ../../ diff --git a/integration/vault/go.mod b/integration/vault/go.mod index 356f19a..8b2cf6c 100755 --- a/integration/vault/go.mod +++ b/integration/vault/go.mod @@ -5,7 +5,7 @@ go 1.21 require ( github.com/hashicorp/vault/api v1.11.0 github.com/stretchr/testify v1.8.4 - go.nunchi.studio/helix v0.16.0 + go.nunchi.studio/helix v0.16.1 ) require ( @@ -54,5 +54,3 @@ require ( google.golang.org/protobuf v1.32.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -replace go.nunchi.studio/helix => ../../ diff --git a/scripts/release.sh b/scripts/release.sh index 078112e..ee8a0c6 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -5,7 +5,7 @@ if [[ -z "$GITHUB_TOKEN" ]]; then exit 1 fi -export GORELEASER_CURRENT_TAG=v0.16.0 +export GORELEASER_CURRENT_TAG=v0.16.1 go work use -r ./