Skip to content

Commit

Permalink
Update go version from 1.16 to 1.17 (#1074)
Browse files Browse the repository at this point in the history
  • Loading branch information
milindl authored Oct 17, 2023
1 parent a88e0f3 commit d59cca0
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 3,205 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ This is a feature release.
availability problems (#998, @kkoehler).
* Fixes a bug in the mock schema registry client where the wrong ID was being
returned for pre-registered schema (#971, @srlk).
* The minimum version of Go supported has been changed from 1.16 to 1.17
(#1074).
* Adds `CreateTopic` method to the MockCluster. (#1047, @mimikwang).
* Fixes an issue where `testing` was being imported by a non-test file,
testhelpers.go. (@dmlambea, #1049).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ for use with [Confluent Cloud](https://www.confluent.io/confluent-cloud/).
Getting Started
===============

Supports Go 1.16+ and librdkafka 2.2.0+.
Supports Go 1.17+ and librdkafka 2.2.0+.

Using Go Modules
----------------
Expand Down
21 changes: 19 additions & 2 deletions examples/go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
module github.com/confluentinc/confluent-kafka-go/examples/v2

go 1.16
go 1.17

replace github.com/confluentinc/confluent-kafka-go/v2 => ../

require (
github.com/actgardner/gogen-avro/v10 v10.2.1
github.com/alecthomas/kingpin v2.2.6+incompatible
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/confluentinc/confluent-kafka-go/v2 v2.2.0
github.com/gdamore/tcell v1.4.0
google.golang.org/protobuf v1.30.0
)

require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/heetch/avro v0.4.4 // indirect
github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0 // indirect
github.com/invopop/jsonschema v0.7.0 // indirect
github.com/jhump/protoreflect v1.14.1 // indirect
github.com/lucasb-eyer/go-colorful v1.0.3 // indirect
github.com/mattn/go-runewidth v0.0.7 // indirect
github.com/santhosh-tekuri/jsonschema/v5 v5.2.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
google.golang.org/genproto v0.0.0-20230331144136-dcfb400f0633 // indirect
)
Loading

0 comments on commit d59cca0

Please sign in to comment.