diff --git a/Doxygen b/Doxygen index 6af08c474..c645a3440 100644 --- a/Doxygen +++ b/Doxygen @@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 2023.11.0b5 +PROJECT_NUMBER = 2023.11.0b6 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/Makefile b/Makefile index 699f15743..ab0e8f15a 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ ESPHOME_PATH = ../esphome -ESPHOME_REF = 2023.11.0b5 +ESPHOME_REF = 2023.11.0b6 .PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify diff --git a/_static/version b/_static/version index d3439e068..db3fd3118 100644 --- a/_static/version +++ b/_static/version @@ -1 +1 @@ -2023.11.0b5 \ No newline at end of file +2023.11.0b6 \ No newline at end of file diff --git a/changelog/2023.11.0.rst b/changelog/2023.11.0.rst index 616c5e462..54b32256b 100644 --- a/changelog/2023.11.0.rst +++ b/changelog/2023.11.0.rst @@ -112,6 +112,9 @@ Beta Changes - Migrate to using aioesphomeapi for the log runner to fix multiple issues :esphomepr:`5733` by :ghuser:`bdraco` - Bump zeroconf to 0.123.0 :esphomepr:`5736` by :ghuser:`bdraco` - Handle wake word not set up internally :esphomepr:`5738` by :ghuser:`jesserockz` +- dashboard: remove usage of codecs module :esphomepr:`5741` by :ghuser:`bdraco` +- dashboard: Run get_serial_ports in the executor :esphomepr:`5740` by :ghuser:`bdraco` +- Generate partitions.csv based on flash size :esphomepr:`5697` by :ghuser:`kbx81` All changes ^^^^^^^^^^^ @@ -226,6 +229,9 @@ All changes - Migrate to using aioesphomeapi for the log runner to fix multiple issues :esphomepr:`5733` by :ghuser:`bdraco` - Bump zeroconf to 0.123.0 :esphomepr:`5736` by :ghuser:`bdraco` - Handle wake word not set up internally :esphomepr:`5738` by :ghuser:`jesserockz` +- dashboard: remove usage of codecs module :esphomepr:`5741` by :ghuser:`bdraco` +- dashboard: Run get_serial_ports in the executor :esphomepr:`5740` by :ghuser:`bdraco` +- Generate partitions.csv based on flash size :esphomepr:`5697` by :ghuser:`kbx81` Past Changelogs --------------- diff --git a/components/esp32.rst b/components/esp32.rst index e2a2daade..4be16b578 100644 --- a/components/esp32.rst +++ b/components/esp32.rst @@ -23,13 +23,16 @@ Configuration variables: choose a generic board from Espressif such as ``esp32dev``. - **framework** (*Optional*): Options for the underlying framework used by ESPHome. See :ref:`esp32-arduino_framework` and :ref:`esp32-espidf_framework`. +- **flash_size** (*Optional*, string): The amount of flash memory available on the ESP32 board/module. One of ``4MB``, + ``8MB``, ``16MB`` or ``32MB``. Defaults to ``4MB``. **Warning: specifying a size larger than that available on your + board will cause the ESP32 to fail to boot.** - **variant** (*Optional*, string): The variant of the ESP32 that is used on this board. One of ``esp32``, - ``esp32s2``, ``esp32s3``, ``esp32c3`` and ``esp32h2``. Defaults to the variant that is detected from the board, if + ``esp32s2``, ``esp32s3``, ``esp32c3`` and ``esp32h2``. Defaults to the variant that is detected from the board; if a board that's unknown to ESPHome is used, this option is mandatory. .. note:: - Support for the ESP32-S2 and ESP32-C3 is still in development and there could be issues. + Support for ESP32 variants such as the S2, S3 and C3 is still in development and there could be issues. GPIO Pin Numbering ------------------ diff --git a/components/fan/index.rst b/components/fan/index.rst index e72b04a4d..112c1eff7 100644 --- a/components/fan/index.rst +++ b/components/fan/index.rst @@ -147,7 +147,7 @@ Increments through speed levels of the fan with the given ID when executed. If t id: fan_1 off_speed_cycle: true # Shorthand: - - fan.cycle_speed:: fan_1 + - fan.cycle_speed: fan_1 Configuration options: diff --git a/conf.py b/conf.py index ec6ff3fc9..15af8e55a 100644 --- a/conf.py +++ b/conf.py @@ -69,7 +69,7 @@ author = "ESPHome" # The short X.Y version. version = "2023.11" # The full version, including alpha/beta/rc tags. -release = "2023.11.0b5" +release = "2023.11.0b6" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/guides/supporters.rst b/guides/supporters.rst index 492169e0c..284a2583f 100644 --- a/guides/supporters.rst +++ b/guides/supporters.rst @@ -1253,4 +1253,4 @@ Contributors - `Zsolt Zsiros (@ZsZs73) `__ - `Christian Zufferey (@zuzu59) `__ -*This page was last updated November 13, 2023.* +*This page was last updated November 14, 2023.*