diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0245e57d6b32d87bfb8a0bfcda1d58123e3f15ea..6ca974cdb0d1f9139529f6f2435a6e6430f2833c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+# [3.2.0](https://gitlab.com/to-be-continuous/gcloud/compare/3.1.0...3.2.0) (2023-08-07)
+
+
+### Bug Fixes
+
+* **doc:** fix typo in readme documentation [skip-ci] ([666b545](https://gitlab.com/to-be-continuous/gcloud/commit/666b54594ade5bcb1927e139d3ea6c01d235abe3))
+
+
+### Features
+
+* support ID tokens in addition to CI_JOB_JWT ([f13362c](https://gitlab.com/to-be-continuous/gcloud/commit/f13362ce0e5f41ce9c9d9a94df1805b7add2a773))
+
 # [3.1.0](https://gitlab.com/to-be-continuous/gcloud/compare/3.0.0...3.1.0) (2023-05-27)
 
 
diff --git a/README.md b/README.md
index 8a73c897a4ad09f340b2ddd5e7f3e50edc800683..66a74e803485d4125bc36ea9ebe445a1050cdfd2 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ In order to include this template in your project, add the following to your `gi
 ```yaml
 include:
   - project: 'to-be-continuous/gcloud'
-    ref: '3.1.0'
+    ref: '3.2.0'
     file: '/templates/gitlab-ci-gcloud.yml'
 ```
 
@@ -334,7 +334,7 @@ Let's imagine a backend service:
 include:
   # Include Google Cloud template
   - project: 'to-be-continuous/gcloud'
-    ref: '3.1.0'
+    ref: '3.2.0'
     file: '/templates/gitlab-ci-gcloud.yml'
   ...
 
@@ -487,11 +487,11 @@ The ID token can be configured as follows in your `.gitlab-ci.yml` file:
 include:
   # main template
   - project: 'to-be-continuous/gcloud'
-    ref: '3.1.0'
+    ref: '3.2.0'
     file: '/templates/gitlab-ci-gcloud.yml'
   # Vault variant
   - project: 'to-be-continuous/gcloud'
-    ref: '3.1.0'
+    ref: '3.2.0'
     file: '/templates/gitlab-ci-gcloud-vault.yml'
 
 variables:
diff --git a/templates/gitlab-ci-gcloud-vault.yml b/templates/gitlab-ci-gcloud-vault.yml
index 13a6d22c559a4fa7f60c4f6b2884513d32af1e8f..0c768dfa55308e2a7c792b38b776cf09286ef14c 100644
--- a/templates/gitlab-ci-gcloud-vault.yml
+++ b/templates/gitlab-ci-gcloud-vault.yml
@@ -12,6 +12,6 @@ variables:
 .gcp-base:
   services:
     - name: "$TBC_TRACKING_IMAGE"
-      command: ["--service", "gcloud", "3.1.0" ]
+      command: ["--service", "gcloud", "3.2.0" ]
     - name: "$TBC_VAULT_IMAGE"
       alias: "vault-secrets-provider"
diff --git a/templates/gitlab-ci-gcloud.yml b/templates/gitlab-ci-gcloud.yml
index b576935a9fba3f824f17a73c8165c2abeb25a599..ff39d66af483cf4ee3fdf0eaec302d52365dbd2d 100644
--- a/templates/gitlab-ci-gcloud.yml
+++ b/templates/gitlab-ci-gcloud.yml
@@ -394,7 +394,7 @@ stages:
   image: $GCP_CLI_IMAGE
   services:
     - name: "$TBC_TRACKING_IMAGE"
-      command: ["--service", "gcloud", "3.1.0" ]
+      command: ["--service", "gcloud", "3.2.0" ]
   before_script:
     - *gcp-scripts
     - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"