Skip to content

Commit 459da79

Browse files
author
Ivan Mirić
committed
Bump version to v0.26.2, add release notes
1 parent 4c49f9a commit 459da79

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
deps:
44
docker:
5-
- image: circleci/golang:1.13
5+
- image: circleci/golang:1.13.8
66
environment:
77
GOPATH: /home/circleci/.go_workspace
88
working_directory: /home/circleci/.go_workspace/src/github.com/loadimpact/k6
@@ -23,7 +23,7 @@ jobs:
2323
2424
test:
2525
docker:
26-
- image: circleci/golang:1.13
26+
- image: circleci/golang:1.13.8
2727
environment:
2828
GOPATH: /home/circleci/.go_workspace
2929
working_directory: /home/circleci/.go_workspace/src/github.com/loadimpact/k6
@@ -67,7 +67,7 @@ jobs:
6767
6868
build-docker-images:
6969
docker:
70-
- image: circleci/golang:1.13
70+
- image: circleci/golang:1.13.8
7171
environment:
7272
GOPATH: /home/circleci/.go_workspace
7373
working_directory: /home/circleci/.go_workspace/src/github.com/loadimpact/k6
@@ -111,7 +111,7 @@ jobs:
111111
112112
build-linux-packages:
113113
docker:
114-
- image: circleci/golang:1.13
114+
- image: circleci/golang:1.13.8
115115
environment:
116116
GOPATH: /home/circleci/.go_workspace
117117
working_directory: /home/circleci/.go_workspace/src/github.com/loadimpact/k6

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ environment:
1010
# specific to go
1111
VERSION: "%APPVEYOR_REPO_TAG_NAME:v=%"
1212
GOPATH: c:\gopath
13-
GOVERSION: 1.13
13+
GOVERSION: 1.13.8
1414
GOMAXPROCS: 2
1515
CGO_ENABLED: '0'
1616
GOARCH: amd64

lib/consts/consts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
)
99

1010
// Version contains the current semantic version of k6.
11-
var Version = "0.26.1" //nolint:gochecknoglobals
11+
var Version = "0.26.2" //nolint:gochecknoglobals
1212

1313
// VersionDetails can be set externally as part of the build process
1414
var VersionDetails = "" // nolint:gochecknoglobals

release notes/v0.26.2.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
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 .
2+
3+
There are no functional changes compared to v0.26.1.

0 commit comments

Comments
 (0)