diff --git a/CHANGELOG.md b/CHANGELOG.md
index 96a759ffd5d0e0ca5b1d88feb9a9955014ac2102..7edf1728bc3b588401957eeb9f04d9796fd6bc15 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [1.7.4](https://ci.tno.nl/gitlab/soccrates/software/rp/compare/1.7.3...1.7.4) (2022-08-22)
+
+
+### Bug Fixes
+
+* CACAO Playbooks, replacing target by targets_ids ([f6e1681](https://ci.tno.nl/gitlab/soccrates/software/rp/commit/f6e16815d245e17da7e931167d4c435c43b722f5))
+
 ## [1.7.3](https://ci.tno.nl/gitlab/soccrates/software/rp/compare/1.7.2...1.7.3) (2022-08-18)
 
 
diff --git a/Chart.yaml b/Chart.yaml
index e3dfe74bb08ea5e80672855b3c60f26e42b7cee4..4325db9a6dd4d3018a9713fdb1644e32d5fb41da 100644
--- a/Chart.yaml
+++ b/Chart.yaml
@@ -4,6 +4,6 @@ name: rp
 description: soccrates response planner
 
 type: application
-version: 1.7.3
+version: 1.7.4
 
-appVersion: "1.7.3"
+appVersion: "1.7.4"
diff --git a/deploy.sh b/deploy.sh
index 5deacca3c547b724c1c175a372116ff3e17b747c..ad5e5336fae24e540b283671c787643dc0c041d2 100644
--- a/deploy.sh
+++ b/deploy.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-tag=${DOCKER_TAG:-1.7.3}
+tag=${DOCKER_TAG:-1.7.4}
 printf "tag is %s\n" "$tag"
 
 env TAG=${tag} docker stack deploy --prune --with-registry-auth \
diff --git a/docker-compose.yml b/docker-compose.yml
index 2818707ea78b4ceebab0704b0f05508207eff8db..848137b61e015561faa6516155fa43d36802cd8d 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -4,7 +4,7 @@ version: '3.8'
 services:
 
   rp:
-    image: ci.tno.nl:4567/soccrates/software/rp/frontend:${TAG:-1.7.3}
+    image: ci.tno.nl:4567/soccrates/software/rp/frontend:${TAG:-1.7.4}
     ports:
       - "8001:80"
     networks:
@@ -26,7 +26,7 @@ services:
         - "io.portainer.accesscontrol.public"
 
   rp-backend:
-    image: ci.tno.nl:4567/soccrates/software/rp/backend:${TAG:-1.7.3}
+    image: ci.tno.nl:4567/soccrates/software/rp/backend:${TAG:-1.7.4}
     env_file:
       - ../config/coa-gen.env
     ports:
diff --git a/tbump.toml b/tbump.toml
index 24b848da47c9dae90238a4f10f1ad87b75de2510..faa766dbf7be5c760994e36ff90c6b77e1ee9183 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,5 +1,5 @@
 [version]
-current = "1.7.3"
+current = "1.7.4"
 
 regex = '''
 \d+\.\d+\.\d+(-(.*))?
diff --git a/templates/backend.deployment.yaml b/templates/backend.deployment.yaml
index e471002eac52c980da3a7f5bbcd1bbcd996a433d..d977c6496b6166048939861ac1fb7c0f443c05e6 100644
--- a/templates/backend.deployment.yaml
+++ b/templates/backend.deployment.yaml
@@ -18,7 +18,7 @@ spec:
         - name: "{{ .Release.Name }}-rp-regcred"
       containers:
         - name: "{{ .Release.Name }}-rp-backend"
-          image: ci.tno.nl:4567/soccrates/software/rp/backend:{{ .Values.rp.imageTag | default "1.7.3" }}
+          image: ci.tno.nl:4567/soccrates/software/rp/backend:{{ .Values.rp.imageTag | default "1.7.4" }}
           imagePullPolicy: Always
           ports:
             - containerPort: 8000
diff --git a/templates/frontend.deployment.yaml b/templates/frontend.deployment.yaml
index 4679f6b9c54b700523a403e57f1727aac60ad748..1a240b70d4eb2e4260d65d64726569deb7989807 100644
--- a/templates/frontend.deployment.yaml
+++ b/templates/frontend.deployment.yaml
@@ -18,7 +18,7 @@ spec:
         - name: "{{ .Release.Name }}-rp-regcred"
       containers:
         - name: "{{ .Release.Name }}-rp-frontend"
-          image: ci.tno.nl:4567/soccrates/software/rp/frontend:{{ .Values.rp.imageTag | default "1.7.3" }}
+          image: ci.tno.nl:4567/soccrates/software/rp/frontend:{{ .Values.rp.imageTag | default "1.7.4" }}
           imagePullPolicy: Always
           ports:
             - containerPort: 80