Skip to content

Commit 8538335

Browse files
committed
version: Release v0.14.0
Signed-off-by: Loïc Saint-Roch <[email protected]>
1 parent f96b1de commit 8538335

File tree

8 files changed

+9
-20
lines changed

8 files changed

+9
-20
lines changed

.github/ISSUE_TEMPLATE/1.bug_report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body:
88
attributes:
99
label: What helix version are you using?
1010
options:
11-
- 0.13.x
11+
- 0.14.x
1212
validations:
1313
required: true
1414
- type: dropdown
@@ -32,6 +32,7 @@ body:
3232
attributes:
3333
label: What Go version are you running?
3434
options:
35+
- 1.21.x
3536
- 1.20.x
3637
- 1.19.x
3738
- 1.18.x

integration/clickhouse/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.20
55
require (
66
github.com/ClickHouse/clickhouse-go/v2 v2.12.1
77
github.com/stretchr/testify v1.8.4
8-
go.nunchi.studio/helix v0.13.1
8+
go.nunchi.studio/helix v0.14.0
99
)
1010

1111
require (
@@ -46,5 +46,3 @@ require (
4646
google.golang.org/protobuf v1.31.0 // indirect
4747
gopkg.in/yaml.v3 v3.0.1 // indirect
4848
)
49-
50-
replace go.nunchi.studio/helix => ../../

integration/nats/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.20
55
require (
66
github.com/nats-io/nats.go v1.28.0
77
github.com/stretchr/testify v1.8.4
8-
go.nunchi.studio/helix v0.13.1
8+
go.nunchi.studio/helix v0.14.0
99
go.opentelemetry.io/otel v1.16.0
1010
)
1111

@@ -40,5 +40,3 @@ require (
4040
google.golang.org/protobuf v1.31.0 // indirect
4141
gopkg.in/yaml.v3 v3.0.1 // indirect
4242
)
43-
44-
replace go.nunchi.studio/helix => ../../

integration/postgres/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.20
55
require (
66
github.com/jackc/pgx/v5 v5.4.2
77
github.com/stretchr/testify v1.8.4
8-
go.nunchi.studio/helix v0.13.1
8+
go.nunchi.studio/helix v0.14.0
99
)
1010

1111
require (
@@ -38,5 +38,3 @@ require (
3838
google.golang.org/protobuf v1.31.0 // indirect
3939
gopkg.in/yaml.v3 v3.0.1 // indirect
4040
)
41-
42-
replace go.nunchi.studio/helix => ../../

integration/rest/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/uptrace/bunrouter v1.0.20
99
github.com/uptrace/bunrouter/extra/bunrouterotel v1.0.20
1010
github.com/uptrace/bunrouter/extra/reqlog v1.0.20
11-
go.nunchi.studio/helix v0.13.1
11+
go.nunchi.studio/helix v0.14.0
1212
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0
1313
)
1414

@@ -52,5 +52,3 @@ require (
5252
gopkg.in/yaml.v2 v2.4.0 // indirect
5353
gopkg.in/yaml.v3 v3.0.1 // indirect
5454
)
55-
56-
replace go.nunchi.studio/helix => ../../

integration/temporal/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.20
44

55
require (
66
github.com/stretchr/testify v1.8.4
7-
go.nunchi.studio/helix v0.13.1
7+
go.nunchi.studio/helix v0.14.0
88
go.opentelemetry.io/otel v1.16.0
99
go.opentelemetry.io/otel/trace v1.16.0
1010
go.temporal.io/api v1.23.0
@@ -49,5 +49,3 @@ require (
4949
google.golang.org/protobuf v1.31.0 // indirect
5050
gopkg.in/yaml.v3 v3.0.1 // indirect
5151
)
52-
53-
replace go.nunchi.studio/helix => ../../

integration/vault/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.20
55
require (
66
github.com/hashicorp/vault/api v1.9.2
77
github.com/stretchr/testify v1.8.4
8-
go.nunchi.studio/helix v0.13.1
8+
go.nunchi.studio/helix v0.14.0
99
)
1010

1111
require (
@@ -55,5 +55,3 @@ require (
5555
google.golang.org/protobuf v1.31.0 // indirect
5656
gopkg.in/yaml.v3 v3.0.1 // indirect
5757
)
58-
59-
replace go.nunchi.studio/helix => ../../

scripts/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if [[ -z "$GITHUB_TOKEN" ]]; then
55
exit 1
66
fi
77

8-
export GORELEASER_CURRENT_TAG=v0.13.1
8+
export GORELEASER_CURRENT_TAG=v0.14.0
99

1010
go work use -r ./
1111

0 commit comments

Comments
 (0)