Bump to 2026.7.5, use RFC 5737 IP in OTA docstring

Version bump for release. Also sanitizes a 192.168.1.100
docstring example in ota_manager.py to 192.0.2.100 (RFC 5737
documentation range) so it can't be mistaken for a real target.
This commit is contained in:
Ryan Malloy 2026-07-05 09:14:29 -06:00
parent 349351deec
commit 35db60125b
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "mcesptool"
version = "2026.02.25.1"
version = "2026.7.5"
description = "FastMCP server for ESP32/ESP8266 development with esptool integration"
readme = "README.md"
requires-python = ">=3.10"

View File

@ -137,7 +137,7 @@ class OTAManager:
"""Deploy an OTA package to a device via HTTP POST.
Extracts firmware.bin from the package and POSTs it to the
device's OTA endpoint (e.g. http://192.168.1.100/ota/update).
device's OTA endpoint (e.g. http://192.0.2.100/ota/update).
The target device must be running an HTTP OTA server (like
esp_https_ota or a custom handler).
"""