From 459da79ef51b37e5eaba4575c9065d9e592e5c49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Miri=C4=87?= Date: Wed, 18 Mar 2020 11:55:29 +0100 Subject: [PATCH] Bump version to v0.26.2, add release notes --- .circleci/config.yml | 8 ++++---- appveyor.yml | 2 +- lib/consts/consts.go | 2 +- release notes/v0.26.2.md | 3 +++ 4 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 release notes/v0.26.2.md diff --git a/.circleci/config.yml b/.circleci/config.yml index 73d41bb66e0..51145f14d1e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 jobs: deps: docker: - - image: circleci/golang:1.13 + - image: circleci/golang:1.13.8 environment: GOPATH: /home/circleci/.go_workspace working_directory: /home/circleci/.go_workspace/src/github.com/loadimpact/k6 @@ -23,7 +23,7 @@ jobs: test: docker: - - image: circleci/golang:1.13 + - image: circleci/golang:1.13.8 environment: GOPATH: /home/circleci/.go_workspace working_directory: /home/circleci/.go_workspace/src/github.com/loadimpact/k6 @@ -67,7 +67,7 @@ jobs: build-docker-images: docker: - - image: circleci/golang:1.13 + - image: circleci/golang:1.13.8 environment: GOPATH: /home/circleci/.go_workspace working_directory: /home/circleci/.go_workspace/src/github.com/loadimpact/k6 @@ -111,7 +111,7 @@ jobs: build-linux-packages: docker: - - image: circleci/golang:1.13 + - image: circleci/golang:1.13.8 environment: GOPATH: /home/circleci/.go_workspace working_directory: /home/circleci/.go_workspace/src/github.com/loadimpact/k6 diff --git a/appveyor.yml b/appveyor.yml index 5b1700e4718..af88cd5a5b6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -10,7 +10,7 @@ environment: # specific to go VERSION: "%APPVEYOR_REPO_TAG_NAME:v=%" GOPATH: c:\gopath - GOVERSION: 1.13 + GOVERSION: 1.13.8 GOMAXPROCS: 2 CGO_ENABLED: '0' GOARCH: amd64 diff --git a/lib/consts/consts.go b/lib/consts/consts.go index 04efe1543ad..1229d223723 100644 --- a/lib/consts/consts.go +++ b/lib/consts/consts.go @@ -8,7 +8,7 @@ import ( ) // Version contains the current semantic version of k6. -var Version = "0.26.1" //nolint:gochecknoglobals +var Version = "0.26.2" //nolint:gochecknoglobals // VersionDetails can be set externally as part of the build process var VersionDetails = "" // nolint:gochecknoglobals diff --git a/release notes/v0.26.2.md b/release notes/v0.26.2.md new file mode 100644 index 00000000000..8d065df2d2c --- /dev/null +++ b/release notes/v0.26.2.md @@ -0,0 +1,3 @@ +k6 v0.26.2 is a minor release that updates the used Go version for the Windows builds to Go 1.13.8. Due to an oversight, previous v0.26 k6 builds for Windows used an old Go version, while builds of other OSes used the correct one. This is meant to address an issue in the Go net/http package: https://github.com/golang/go/issues/34285 . + +There are no functional changes compared to v0.26.1.