1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 11:22:24 +01:00

[api] Bump APIVersion to 1.11 (#9990)

This commit is contained in:
rwrozelle
2025-07-30 21:02:09 -04:00
committed by GitHub
parent 97560fd9ef
commit 853dca6c5c

View File

@@ -1366,7 +1366,7 @@ bool APIConnection::send_hello_response(const HelloRequest &msg) {
HelloResponse resp;
resp.api_version_major = 1;
resp.api_version_minor = 10;
resp.api_version_minor = 11;
// Temporary string for concatenation - will be valid during send_message call
std::string server_info = App.get_name() + " (esphome v" ESPHOME_VERSION ")";
resp.set_server_info(StringRef(server_info));