diff --git a/README.md b/README.md
index e6557dcf5ebae95676123a1e6e3cdc09d58929c0..148298d22167bb6af443f8053acae4a76b9254c8 100644
--- a/README.md
+++ b/README.md
@@ -161,6 +161,7 @@ Next change the version in the following places:
 
 # Release Notes
 
+* 0.36.1 Fix tile beamforming
 * 0.36.0 Upgraded base image to tango-itango:9.5.0, greatly improving numpy performance
          Improved multi-threading performance for delay calculations for beam pointing and tracking
          Added logging for observation initialisation sequence
diff --git a/tangostationcontrol/VERSION b/tangostationcontrol/VERSION
index 93d4c1ef06f1a9f724fd295bfd1df2af0b6334cd..19199bccac8ecfef0d4a64aca9460cd074ff2cc7 100644
--- a/tangostationcontrol/VERSION
+++ b/tangostationcontrol/VERSION
@@ -1 +1 @@
-0.36.0
+0.36.1
diff --git a/tangostationcontrol/tangostationcontrol/devices/recv/recvh.py b/tangostationcontrol/tangostationcontrol/devices/recv/recvh.py
index 2f2f68d1f7eb8d23c4a97b3ee10137d65121c4ef..a9262b325e5875e9ce62450c2b8c0ef960092e81 100644
--- a/tangostationcontrol/tangostationcontrol/devices/recv/recvh.py
+++ b/tangostationcontrol/tangostationcontrol/devices/recv/recvh.py
@@ -253,7 +253,7 @@ class RECVH(RECVDevice):
                 "HBAT_BF_delay_steps_RW"
             )
 
-            if (staged_value != last_written_value).all():
+            if (staged_value != last_written_value).any():
                 logger.debug(
                     "Writing HBAT_BF_delay_steps_RW := HBAT_BF_delay_steps_stage_RW after detecting changes"
                 )