Merge pull request #1321 from esphome/bump-1.20.0b6

1.20.0b6
This commit is contained in:
Jesse Hills 2021-07-21 11:35:51 +12:00 committed by GitHub
commit 6d423429e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 21 additions and 5 deletions

View File

@ -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 = 1.20.0b5
PROJECT_NUMBER = 1.20.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

View File

@ -1,5 +1,5 @@
ESPHOME_PATH = ../esphome
ESPHOME_REF = v1.20.0b5
ESPHOME_REF = v1.20.0b6
.PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png

View File

@ -1 +1 @@
1.20.0b5
1.20.0b6

View File

@ -53,6 +53,12 @@ will know whether or not the node is online.
:width: 50.0%
Nextion
-------
Need to write something about the nextion changes here...
Full list of changes
--------------------
@ -62,6 +68,7 @@ New Features
- Allow WiFi AP to use device name :esphomepr:`1990` by :ghuser:`jesserockz` (new-feature)
- Add Number entities (from Home Assistant) :esphomepr:`1971` by :ghuser:`jesserockz` (new-feature) (new-integration) (notable-change)
- Nextion upload and sensors :esphomepr:`1464` by :ghuser:`SenexCrenshaw` (new-feature) (notable-change)
- Adding last_reset_type to sensors that should support it. :esphomepr:`2039` by :ghuser:`jesserockz` (new-feature)
New Integrations
^^^^^^^^^^^^^^^^
@ -99,6 +106,9 @@ Beta fixes
- Bump dashboard to 20210719.0 :esphomepr:`2043` by :ghuser:`balloob`
- Correct ADS1115 handling of multiple sensors in continuous mode :esphomepr:`2016` by :ghuser:`flacjacket`
- ESP32 ADC use esp-idf :esphomepr:`2024` by :ghuser:`OttoWinter`
- Fix white value transition for addressable lights :esphomepr:`2045` by :ghuser:`oxan`
- Adding last_reset_type to sensors that should support it. :esphomepr:`2039` by :ghuser:`jesserockz` (new-feature)
- Remove superfluous polling on ADS1115 :esphomepr:`2015` by :ghuser:`flacjacket`
All changes
^^^^^^^^^^^
@ -171,6 +181,9 @@ All changes
- Bump dashboard to 20210719.0 :esphomepr:`2043` by :ghuser:`balloob`
- Correct ADS1115 handling of multiple sensors in continuous mode :esphomepr:`2016` by :ghuser:`flacjacket`
- ESP32 ADC use esp-idf :esphomepr:`2024` by :ghuser:`OttoWinter`
- Fix white value transition for addressable lights :esphomepr:`2045` by :ghuser:`oxan`
- Adding last_reset_type to sensors that should support it. :esphomepr:`2039` by :ghuser:`jesserockz` (new-feature)
- Remove superfluous polling on ADS1115 :esphomepr:`2015` by :ghuser:`flacjacket`
Past Changelogs
---------------

View File

@ -48,6 +48,9 @@ Configuration variables:
- **state_class** (*Optional*, string): The state class for the
sensor. See https://developers.home-assistant.io/docs/core/entity/sensor/#available-state-classes
for a list of available options. Set to ``""`` to remove the default state class of a sensor.
- **last_reset_type** (*Optional*, string): The last reset type to use for the sensor.
Currently there is no gain in overriding this string in YAML and it should be set in the platform code.
Set to ``""`` to remove the default last reset type of a sensor.
- **icon** (*Optional*, icon): Manually set the icon to use for the sensor in the frontend. The icon set here
is ignored by Home Assistant, if a device class is already set.
- **accuracy_decimals** (*Optional*, int): Manually set the accuracy of decimals to use when reporting values.

View File

@ -69,7 +69,7 @@ author = "Otto Winter"
# The short X.Y version.
version = "1.20"
# The full version, including alpha/beta/rc tags.
release = "1.20.0b5"
release = "1.20.0b6"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -608,4 +608,4 @@ Contributors
- `San (@zhujunsan) <https://github.com/zhujunsan>`__
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
*This page was last updated July 20, 2021.*
*This page was last updated July 21, 2021.*