diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 512dfef6d7fdad24960602c9979872eaf9ed666c..0000000000000000000000000000000000000000
--- 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 45aeeba6143ed8192bed101296e4e2e98467b4ca..3cbc7277d2f03f9ee53a2f16e567405d0bc40b1a 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 79dd5f7b8436c16ce24c68633998a81b99a0f581..e984d71982f2a60c7bf0543e03a90f8c540693d4 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 + ")"
 )