From d16b7a1f27e96d58f7cf79a4c02c002ada170a1f Mon Sep 17 00:00:00 2001
From: Rohith <gambol99@gmail.com>
Date: Sat, 1 Oct 2016 00:26:34 +0100
Subject: [PATCH] - creating version v1.2.8 - removing the gitlab build

---
 .gitlab-ci.yml | 51 --------------------------------------------------
 CHANGELOG.md   |  7 +++++++
 doc.go         |  2 +-
 3 files changed, 8 insertions(+), 52 deletions(-)
 delete mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 512dfef..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,51 +0,0 @@
-variables:
-  REGISTRY: quay.io
-  NAME: go-keycloak-proxy
-  GOVERSION: 1.7.0
-
-stages:
-  - tests
-  - build
-  - deploy
-
-tests:
-  stage: tests
-  image: golang:${GOVERSION}
-  before_script:
-  - mkdir -p /go/src/github.com/gambol99
-  - ln -sf /builds/go/keycloak-proxy /go/src/github.com/gambol99
-  - cd /go/src/github.com/gambol99/keycloak-proxy
-  script:
-  - make deps
-  - make test
-
-build:
-  stage: build
-  image: golang:${GOVERSION}
-  before_script:
-  - mkdir -p /go/src/github.com/gambol99
-  - ln -sf /builds/go/keycloak-proxy /go/src/github.com/gambol99
-  - cd /go/src/github.com/gambol99/keycloak-proxy
-  script:
-  - make deps
-  - make static
-  artifacts:
-    expire_in: 1d
-    paths:
-    - bin/
-  only:
-    - master
-    - /^v([0-9]{1,3}[.]?){3}.*$/
-
-deploy:
-  stage: deploy
-  script:
-    - export VERSION=$CI_BUILD_REF_NAME
-    - '[[ "$VERSION" == "master" ]] && VERSION="latest"'
-    - docker login -u ${REGISTRY_USER} -p ${REGISTRY_TOKEN} -e ${REGISTRY_EMAIL} ${REGISTRY}
-    - docker build -t ${REGISTRY}/${REGISTRY_AUTHOR}/${NAME}:${VERSION} .
-    - docker push ${REGISTRY}/${REGISTRY_AUTHOR}/${NAME}:${VERSION}
-    - docker rmi ${REGISTRY}/${REGISTRY_AUTHOR}/${NAME}:${VERSION}
-  only:
-    - master
-    - /^v([0-9]{1,3}[.]?){3}.*$/
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 45aeeba..3cbc727 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,11 @@
 
+#### **1.2.8**
+
+FIXES:
+ * Fixed a bug in the --cookie-domain options
+ * Added unit test for the cookie-domain options
+ * Switched to using set rather than add to the headers
+
 #### **1.2.7**
 
 FIXES:
diff --git a/doc.go b/doc.go
index 79dd5f7..e984d71 100644
--- a/doc.go
+++ b/doc.go
@@ -24,7 +24,7 @@ import (
 )
 
 var (
-	release = "v1.2.7"
+	release = "v1.2.8"
 	gitsha  = "no gitsha provided"
 	version = release + " (git+sha: " + gitsha + ")"
 )
-- 
GitLab