Merge pull request #4035 from esphome/bump-2022.11.0b5

2022.11.0b5
This commit is contained in:
Jesse Hills 2022-11-16 15:45:53 +13:00 committed by GitHub
commit d924702825
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ CONFIG_SCHEMA = (
def auto_data_rate(config):
interval_sec = config[CONF_UPDATE_INTERVAL].seconds
interval_sec = config[CONF_UPDATE_INTERVAL].total_milliseconds / 1000
interval_hz = 1.0 / interval_sec
for datarate in sorted(QMC5883LDatarates.keys()):
if float(datarate) >= interval_hz:

View file

@ -1,6 +1,6 @@
"""Constants used by esphome."""
__version__ = "2022.11.0b4"
__version__ = "2022.11.0b5"
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"