File tree 7 files changed +9
-15
lines changed
7 files changed +9
-15
lines changed Original file line number Diff line number Diff line change 4
4
executors :
5
5
golang-executor :
6
6
docker :
7
- - image : gcr.io/gcr-for-testing/golang:1.20.7
7
+ - image : gcr.io/gcr-for-testing/golang:1.20.11
8
8
machine-executor :
9
9
machine :
10
10
image : ubuntu-2204:current
@@ -19,7 +19,7 @@ aliases:
19
19
parameters :
20
20
goImage :
21
21
type : string
22
- default : " gcr.io/gcr-for-testing/golang:1.20.7 "
22
+ default : " gcr.io/gcr-for-testing/golang:1.20.11 "
23
23
arangodbImage :
24
24
type : string
25
25
default : " gcr.io/gcr-for-testing/arangodb/enterprise-preview:devel-nightly"
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
3
## [ master] ( https://github.com/arangodb/go-driver/tree/master ) (N/A)
4
+ - Switch Go 1.20.11
4
5
5
6
## [ 1.6.1] ( https://github.com/arangodb/go-driver/tree/v1.6.1 ) (2023-10-31)
6
7
- Add support for getting license
Original file line number Diff line number Diff line change 15
15
16
16
# Change Golang version
17
17
18
- - Edit the .travis file and change all occurrences of ` golang:x.y.z-stretch ` to the appropriate version.
19
-
20
- - Edit the Makefile and change the line ` GOVERSION ?= 1.16.6 ` into the required version .
18
+ - Edit the [ .circleci/config.yml ] ( .circleci/config.yml ) file and change ALL occurrences of ` gcr.io/gcr-for-testing/golang ` to the appropriate version.
19
+ - Edit the [ Makefile ] ( Makefile ) and change the ` GOVERSION ` to the appropriate version.
20
+ - For minor Golang version update, bump the Go version in [ go.mod ] ( go.mod ) and [ v2/go.mod ] ( v2/go.mod ) and run ` go mod tidy ` .
21
21
22
22
## Debugging with DLV
23
23
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ SCRIPTDIR := $(shell pwd)
4
4
CURR =$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST ) ) ) )
5
5
ROOTDIR: =$(CURR )
6
6
7
- GOVERSION ?= 1.20.7
7
+ GOVERSION ?= 1.20.11
8
8
GOIMAGE ?= golang:$(GOVERSION )
9
9
GOV2IMAGE ?= $(GOIMAGE )
10
10
ALPINE_IMAGE ?= alpine:3.17
Original file line number Diff line number Diff line change 1
1
module github.com/arangodb/go-driver
2
2
3
- go 1.19
3
+ go 1.20
4
4
5
5
require (
6
6
github.com/arangodb/go-velocypack v0.0.0-20200318135517-5af53c29c67e
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
module github.com/arangodb/go-driver/v2
2
2
3
- go 1.19
3
+ go 1.20
4
4
5
5
require (
6
6
github.com/arangodb/go-velocypack v0.0.0-20200318135517-5af53c29c67e
You can’t perform that action at this time.
0 commit comments