diff --git a/README.md b/README.md
index 92e980076f2a60121718f20b0c9b323aa6b5a4d3..b811fa3dbeb7eb07e3f741e6a86a656055b3e9b5 100644
--- a/README.md
+++ b/README.md
@@ -166,6 +166,9 @@ Next change the version in the following places:
 
 # Release Notes
 
+* 0.30.1 Remove deprecated FPGA_beamlet_output_nof_beamlets
+         Fix prometheus metric for counting calibrations
+         Removed ALARM and DISABLED states
 * 0.30.0 Refactor station state transitions using the State pattern
 * 0.29.2 Bump MinIO versions
 * 0.29.1-3 Fix central logs service consul name
diff --git a/tangostationcontrol/VERSION b/tangostationcontrol/VERSION
index c25c8e5b74165cb091da0d733df57a19152ded93..1a44cad74d6555dd4d4557871257966853237a86 100644
--- a/tangostationcontrol/VERSION
+++ b/tangostationcontrol/VERSION
@@ -1 +1 @@
-0.30.0
+0.30.1
diff --git a/tangostationcontrol/tangostationcontrol/devices/sdp/beamlet.py b/tangostationcontrol/tangostationcontrol/devices/sdp/beamlet.py
index 4e8c5d781a5938362b4f52353311f0f622f97691..b7b6319cf20136db93b004ac9e283d3ddc3f1679 100644
--- a/tangostationcontrol/tangostationcontrol/devices/sdp/beamlet.py
+++ b/tangostationcontrol/tangostationcontrol/devices/sdp/beamlet.py
@@ -289,17 +289,6 @@ class Beamlet(OPCUADevice):
         access=AttrWriteType.READ_WRITE,
     )
 
-    FPGA_beamlet_output_nof_beamlets_R = AttributeWrapper(
-        comms_annotation=["FPGA_beamlet_output_nof_beamlets_R"],
-        datatype=numpy.uint32,
-        dims=(N_pn,),
-    )
-    FPGA_beamlet_output_nof_beamlets_RW = AttributeWrapper(
-        comms_annotation=["FPGA_beamlet_output_nof_beamlets_RW"],
-        datatype=numpy.uint32,
-        dims=(N_pn,),
-        min_value=1,
-    )
     FPGA_beamlet_output_scale_R = AttributeWrapper(
         comms_annotation=["FPGA_beamlet_output_scale_R"],
         datatype=numpy.double,