Merge pull request #2808 from esphome/bump-2021.11.3

2021.11.3
This commit is contained in:
Jesse Hills 2021-11-28 00:01:16 +13:00 committed by GitHub
commit 21db43db06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -76,6 +76,7 @@ class ESP32Preferences : public ESPPreferences {
uint32_t current_offset = 0;
void open() {
nvs_flash_init();
esp_err_t err = nvs_open("esphome", NVS_READWRITE, &nvs_handle);
if (err == 0)
return;

View file

@ -1,6 +1,6 @@
"""Constants used by esphome."""
__version__ = "2021.11.2"
__version__ = "2021.11.3"
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"