diff --git a/.github/workflows/RavenClient.yml b/.github/workflows/RavenClient.yml index d2127453..323fa027 100644 --- a/.github/workflows/RavenClient.yml +++ b/.github/workflows/RavenClient.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - go version: [ 1.15,1.16,1.17.x ] + go version: [ 1.15, 1.16, 1.17.x, 1.20 ] serverVersion: [ "5.2", "5.3" ] operating-system: [ ubuntu-latest ] fail-fast: false diff --git a/.travis.yml b/.travis.yml index ebce1340..2dded509 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,11 @@ notifications: go: - 1.11 + - 1.15 + - 1.16 + - 1.17 + - 1.20 + # TODO: maybe use latest build instead of latest stable diff --git a/go.mod b/go.mod index 742fc0e7..f179a173 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,8 @@ module github.com/ravendb/ravendb-go-client -go 1.16 +go 1.20 require ( - github.com/davecgh/go-spew v1.1.1 // indirect github.com/google/uuid v1.3.0 github.com/gorilla/websocket v1.4.1 github.com/hashicorp/go-multierror v1.1.1 @@ -11,3 +10,10 @@ require ( github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348 github.com/stretchr/testify v1.3.0 ) + +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/elazarl/goproxy v0.0.0-20181111060418-2ce16c963a8a // indirect + github.com/hashicorp/errwrap v1.0.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect +) diff --git a/stream_command.go b/stream_command.go index e7d5f334..6257f8a1 100644 --- a/stream_command.go +++ b/stream_command.go @@ -1,3 +1,5 @@ + + package ravendb import (