Merge pull request #4445 from esphome/bump-2023.2.1

2023.2.1
This commit is contained in:
Jesse Hills 2023-02-16 15:44:32 +13:00 committed by GitHub
commit 4434e59e5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

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

View file

@ -142,7 +142,10 @@ def get_ini_content():
# Sort to avoid changing build flags order # Sort to avoid changing build flags order
CORE.add_platformio_option("build_flags", sorted(CORE.build_flags)) CORE.add_platformio_option("build_flags", sorted(CORE.build_flags))
content = f"[env:{CORE.name}]\n" content = "[platformio]\n"
content += f"description = ESPHome {__version__}\n"
content += f"[env:{CORE.name}]\n"
content += format_ini(CORE.platformio_options) content += format_ini(CORE.platformio_options)
return content return content