diff --git a/README.md b/README.md
index c22e6a5de82df037cc1260ac29179c4d70777cdf..0aba8c99bf57f82767a660d269f202a6bb504766 100644
--- a/README.md
+++ b/README.md
@@ -105,6 +105,7 @@ tox -e debug tests.requests.test_prometheus
 ```
 
 ## Releasenotes
+- 0.14.1 - Added `beamlet.subband_select_RW` attribute to BSTHdf5Writer 
 - 0.14  - Added new attributes to statistics HDF file as well as documentation
 - 0.13  - Added lazy connection behavior to `devices.LofarDeviceProxy` class
 - 0.12.
diff --git a/VERSION b/VERSION
index a803cc227fe6ff1fbb6dcfc2dde3e4ccc450257e..930e3000bdc9aaa03a5a26831c271dd32d494f61 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.14.0
+0.14.1
diff --git a/lofar_station_client/statistics/README.md b/lofar_station_client/statistics/README.md
index d7d8df3c14d4ce5c4e8ab23c543c3da415d301e2..64bb5616e37d0383a312bac0ea70751ef3be4b38 100644
--- a/lofar_station_client/statistics/README.md
+++ b/lofar_station_client/statistics/README.md
@@ -14,15 +14,20 @@ those matrices (as well as a bunch of metadata) to hdf5.
 The statistics writer can be called with the `statistics_writer.py` script.
 This script can be called with the following arguments:
   ```
-  -a  --host        the address to connect to
-  -p  --port        the port to use (default: 0)
-  -f  --file        file to read from (alternative to using host and port)
-  -i  --interval    The time between creating new files in seconds (default: 3600)
-  -o  --output_dir  specifies the folder to write all the files (default: current)
-  -m  --mode        sets the statistics type to be decoded options: "SST", "XST", "BST" (default: SST)
-  -v  --debug       takes no arguments, when used prints a lot of extra data to help with debugging (default: off)
-  -d  --decimation  Configure the writer to only store one every n samples. Saves storage space (default: 1 (everything))
-  -r  --reconnect   Set the writer to keep trying to reconnect whenever connection is lost. (default: off)
+  -a  --host          the address to connect to
+  -p  --port          the port to use (default: 0)
+  -f  --file          file to read from (alternative to using host and port)
+  -i  --interval      The time between creating new files in seconds (default: 3600)
+  -o  --output_dir    specifies the folder to write all the files (default: current)
+  -m  --mode          sets the statistics type to be decoded options: "SST", "XST", "BST" (default: SST)
+  -v  --debug         takes no arguments, when used prints a lot of extra data to help with debugging (default: off)
+  -d  --decimation    Configure the writer to only store one every n samples. Saves storage space (default: 1 (everything))
+  -r  --reconnect     Set the writer to keep trying to reconnect whenever connection is lost. (default: off)
+  -nt --no-tango      Disable connection to Tango device attribute values retrieval (default: false)
+  -A  --antennafield  Device name for AntennaField Proxy device
+  -S  --sdp           Device name for SDP Proxy device
+  -TB --tilebeam      Device name for Tilebeam Proxy device
+  -DB --digitalbeam   Device name for Digitalbeam Proxy device
   ```
 An example call could be:
 
diff --git a/lofar_station_client/statistics/writer/VERSION b/lofar_station_client/statistics/writer/VERSION
index 3b04cfb60da13a716867848ebeb2191a164887d9..be586341736ee60d6ca2be0f3762a307e8fe79f9 100644
--- a/lofar_station_client/statistics/writer/VERSION
+++ b/lofar_station_client/statistics/writer/VERSION
@@ -1 +1 @@
-0.2
+0.3
diff --git a/lofar_station_client/statistics/writer/entry.py b/lofar_station_client/statistics/writer/entry.py
index 578b658f796d39f6218ddb1e8b2e063a154412ca..b064039733e9776245a54fe4ada95721bad970e3 100644
--- a/lofar_station_client/statistics/writer/entry.py
+++ b/lofar_station_client/statistics/writer/entry.py
@@ -109,7 +109,7 @@ def _create_parser():
         help="Antenna field to collect data for",
     )
     parser.add_argument(
-        "-SDP",
+        "-S",
         "--sdp",
         type=str,
         choices=["", "1"],
@@ -291,7 +291,7 @@ def main():
 
     if args.tilebeam:
         tilebeam_device = _get_tango_device(
-            tango_disabled, host, f"STAT/TileBeam/{args.sdp}"
+            tango_disabled, host, f"STAT/TileBeam/{args.tilebeam}"
         )
     else:
         tilebeam_device = None