Bump LibreTiny recommended version to 1.9.1 (#9110)

This commit is contained in:
Jonathan Swoboda 2025-06-16 22:41:18 -04:00 committed by GitHub
parent 738ad8e9d3
commit b08bd0c24a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -173,9 +173,9 @@ def _notify_old_style(config):
# The dev and latest branches will be at *least* this version, which is what matters. # The dev and latest branches will be at *least* this version, which is what matters.
ARDUINO_VERSIONS = { ARDUINO_VERSIONS = {
"dev": (cv.Version(1, 7, 0), "https://github.com/libretiny-eu/libretiny.git"), "dev": (cv.Version(1, 9, 1), "https://github.com/libretiny-eu/libretiny.git"),
"latest": (cv.Version(1, 7, 0), "libretiny"), "latest": (cv.Version(1, 9, 1), "libretiny"),
"recommended": (cv.Version(1, 7, 0), None), "recommended": (cv.Version(1, 9, 1), None),
} }