From bafbeefb37b3b04ebb932bcff6a27c3a64c0e3ef Mon Sep 17 00:00:00 2001 From: Guillermo Ruffino Date: Tue, 11 May 2021 12:05:49 -0300 Subject: [PATCH] Switch to esphome/AsyncTCP-esphome v1.2.2. (#1762) --- esphome/components/async_tcp/__init__.py | 4 ++-- platformio.ini | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/esphome/components/async_tcp/__init__.py b/esphome/components/async_tcp/__init__.py index b07db9ed7c..8532f349e6 100644 --- a/esphome/components/async_tcp/__init__.py +++ b/esphome/components/async_tcp/__init__.py @@ -8,8 +8,8 @@ CODEOWNERS = ["@OttoWinter"] @coroutine_with_priority(200.0) def to_code(config): if CORE.is_esp32: - # https://github.com/OttoWinter/AsyncTCP/blob/master/library.json - cg.add_library("AsyncTCP-esphome", "1.1.1") + # https://github.com/esphome/AsyncTCP/blob/master/library.json + cg.add_library("esphome/AsyncTCP-esphome", "1.2.2") elif CORE.is_esp8266: # https://github.com/OttoWinter/ESPAsyncTCP cg.add_library("ESPAsyncTCP-esphome", "1.2.3") diff --git a/platformio.ini b/platformio.ini index 1dbc88cfde..7a63ea67a9 100644 --- a/platformio.ini +++ b/platformio.ini @@ -10,7 +10,7 @@ include_dir = include [common] lib_deps = - AsyncTCP-esphome@1.1.1 + esphome/AsyncTCP-esphome@1.2.2 AsyncMqttClient-esphome@0.8.4 ArduinoJson-esphomelib@5.13.3 ESPAsyncWebServer-esphome@1.2.7