How to do a Rclone Update?

Are there any recommended ways to update Rclone to the latest version. I’ve installed from source, following the guide here Rclone install from source.

Should I delete the old Rclone version then follow the last part of the guide again or is there a command I can execute and it will update the previous installation.

Thanks

1: unmount
fusermount -uz /path/to/mount/

2: delete existing rclone
rm -r /usr/sbin/rclone

3: fetch and install
wget https://downloads.rclone.org/v1.42/rclone-v1.42-linux-amd64.zip
unzip rclone-current-linux-amd64.zip
cd rclone-*-linux-amd64

4: Copy binary file
sudo cp rclone /usr/sbin/
sudo chown root:root /usr/sbin/rclone
sudo chmod 755 /usr/sbin/rclone

5: Run mount again