diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3f06714d8ef2b686eefe8a7ddecca987c6819da2..f6219cbcc54e8cc60992b1004e800a98776d3741 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.1.0](https://gitlab.com/to-be-continuous/golang/compare/2.0.3...2.1.0) (2021-11-29)
+
+
+### Features
+
+* Add GO_PROJECT_DIR variable ([ce66c08](https://gitlab.com/to-be-continuous/golang/commit/ce66c088f281363fa12989ab8a6a8563d00c3196))
+
 ## [2.0.3](https://gitlab.com/to-be-continuous/golang/compare/2.0.2...2.0.3) (2021-11-27)
 
 
diff --git a/README.md b/README.md
index 6891dddcc014502e90ba8b9120af8456ea63528a..a9b3f4275b0c5e88cdfbea76dadc29fe5121b93f 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ In order to include this template in your project, add the following to your `gi
 ```yaml
 include:
   - project: 'to-be-continuous/golang'
-    ref: '2.0.3'
+    ref: '2.1.0'
     file: '/templates/gitlab-ci-golang.yml'
 ```
 
diff --git a/templates/gitlab-ci-golang.yml b/templates/gitlab-ci-golang.yml
index 7a019b8b61306e91e669d15e59acf775dc691209..65b42ba70edaeb0518502954b18620f73de7af9f 100644
--- a/templates/gitlab-ci-golang.yml
+++ b/templates/gitlab-ci-golang.yml
@@ -271,7 +271,7 @@ stages:
     fi
   }
 
-  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update golang "2.0.3"; fi
+  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update golang "2.1.0"; fi
   unscope_variables
 
   # ENDSCRIPT
@@ -282,7 +282,7 @@ stages:
   image: $GO_IMAGE
   services:
     - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
-      command: ["--service", "golang", "2.0.3" ]
+      command: ["--service", "golang", "2.1.0" ]
   variables:
     # The directory where 'go install' will install a command.
     GOBIN: "$CI_PROJECT_DIR/$GO_PROJECT_DIR/bin"