Merge pull request #4018 from esphome/bump-2022.11.0b3

2022.11.0b3
This commit is contained in:
Jesse Hills 2022-11-11 12:26:49 +13:00 committed by GitHub
commit 39f0f748bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ optional<std::string> ToUpperFilter::new_value(std::string value) {
// ToLowerFilter // ToLowerFilter
optional<std::string> ToLowerFilter::new_value(std::string value) { optional<std::string> ToLowerFilter::new_value(std::string value) {
for (char &c : value) for (char &c : value)
c = ::toupper(c); c = ::tolower(c);
return value; return value;
} }

View File

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