Skip to content

Commit

Permalink
Change go.mod's go directive to indicate support for Go 1.19
Browse files Browse the repository at this point in the history
This partially reverts #4206.

On the OpenTelemetry Collector project we aim to provide support
for all officially supported Go versions. Per Go's support policy [1],
Go 1.19 will remain a supported Go version until Go 1.21 is released.
Since we take a dependency on Jaeger as a library, we need Jaeger to
remain compatible with Go 1.19 as a library to be able to keep it updated.

This patch does not revert other changes on #4206; Jaeger binaries would
continue to be built with Go 1.20 and benefit from all performance and security
improvements that the 1.20 release cycle offers.

Signed-off-by: Pablo Baeyens <[email protected]>
  • Loading branch information
mx-psi committed Mar 22, 2023
1 parent 6ab3f01 commit 8de19fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/jaegertracing/jaeger

go 1.20
go 1.19

require (
github.com/HdrHistogram/hdrhistogram-go v1.1.2
Expand Down

0 comments on commit 8de19fa

Please sign in to comment.