Skip to content

Commit

Permalink
Bump version to v0.26.2, add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Mirić committed Mar 18, 2020
1 parent 4c49f9a commit 459da79
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/consts/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions release notes/v0.26.2.md
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 459da79

Please sign in to comment.