summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml6
-rw-r--r--CHANGELOG3
-rw-r--r--Makefile3
-rw-r--r--VERSION2
4 files changed, 13 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e351fd1..c9c1744 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -55,6 +55,12 @@ go:1.14:
extends: .test
image: golang:1.14
+race:
+ extends: .test
+ image: golang:1.14
+ script:
+ - make test_golang_race
+
codequality:
extends: .use-docker-in-docker
allow_failure: true
diff --git a/CHANGELOG b/CHANGELOG
index 3f79941..9059974 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+v13.2.0
+- Add HTTP status code to internal API logs !376
+
v13.1.0
- Ensure we are pasing the parsed secret !381
diff --git a/Makefile b/Makefile
index 4b0ca2c..5c2a8f1 100644
--- a/Makefile
+++ b/Makefile
@@ -21,6 +21,9 @@ test_ruby:
test_golang:
go test ./...
+test_golang_race:
+ go test -race ./...
+
setup: _install bin/gitlab-shell
_install:
diff --git a/VERSION b/VERSION
index e6ba351..67aee23 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-13.1.0
+13.2.0