Skip to content

Commit fbf5680

Browse files
authored
Switch Go 1.20.11 (#569)
1 parent 5534a54 commit fbf5680

File tree

7 files changed

+9
-15
lines changed

7 files changed

+9
-15
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ orbs:
44
executors:
55
golang-executor:
66
docker:
7-
- image: gcr.io/gcr-for-testing/golang:1.20.7
7+
- image: gcr.io/gcr-for-testing/golang:1.20.11
88
machine-executor:
99
machine:
1010
image: ubuntu-2204:current
@@ -19,7 +19,7 @@ aliases:
1919
parameters:
2020
goImage:
2121
type: string
22-
default: "gcr.io/gcr-for-testing/golang:1.20.7"
22+
default: "gcr.io/gcr-for-testing/golang:1.20.11"
2323
arangodbImage:
2424
type: string
2525
default: "gcr.io/gcr-for-testing/arangodb/enterprise-preview:devel-nightly"

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Change Log
22

33
## [master](https://github.com/arangodb/go-driver/tree/master) (N/A)
4+
- Switch Go 1.20.11
45

56
## [1.6.1](https://github.com/arangodb/go-driver/tree/v1.6.1) (2023-10-31)
67
- Add support for getting license

MAINTAINERS.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
# Change Golang version
1717

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`.
2121

2222
## Debugging with DLV
2323

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SCRIPTDIR := $(shell pwd)
44
CURR=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
55
ROOTDIR:=$(CURR)
66

7-
GOVERSION ?= 1.20.7
7+
GOVERSION ?= 1.20.11
88
GOIMAGE ?= golang:$(GOVERSION)
99
GOV2IMAGE ?= $(GOIMAGE)
1010
ALPINE_IMAGE ?= alpine:3.17

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/arangodb/go-driver
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/arangodb/go-velocypack v0.0.0-20200318135517-5af53c29c67e

scripts/update-version.sh

-7
This file was deleted.

v2/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/arangodb/go-driver/v2
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/arangodb/go-velocypack v0.0.0-20200318135517-5af53c29c67e

0 commit comments

Comments
 (0)