This release pulls in some improvements from https://github.com/LocalBytes/esphome-localbytes-plug and fixes a bug where setting the default state of the relay also affected the default state of the "Disable LED" and "Disable button" virtual switches. You can now set the default state of these through substitutions:
substitutions:
# Default Relay State
# Options: `RESTORE_DEFAULT_OFF`, `RESTORE_DEFAULT_ON`, `ALWAYS_ON` & `ALWAYS_OFF`
default_state: "RESTORE_DEFAULT_OFF"
# Default state of the "disable led" virtual switch
disable_led_default_state: "RESTORE_DEFAULT_OFF"
# Default state of the "disable button"/child-lock virtual switch
disable_button_default_state: "RESTORE_DEFAULT_OFF"
Thanks to @edwardpoll for mentioning this.