From 7b4c5e3f1cdb8a10709c8e0a99bc19c87d1d156a Mon Sep 17 00:00:00 2001 From: Chris Leishman Date: Wed, 10 Jun 2026 23:57:51 -0700 Subject: [PATCH] Remove target restriction from component manifest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The targets list reflected hardware the component had been tested on, not a technical limitation — the library is pure C++ with no chip-specific code. Omitting the list makes the component available on all current and future ESP-IDF targets. --- idf_component.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/idf_component.yml b/idf_component.yml index eeef314..4d3c400 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,12 +1,5 @@ -version: "1.1.2" +version: "1.1.3" description: "Type-safe frequency handling library modeled after std::chrono" url: "https://github.com/cleishm/frequency-cpp" repository: "https://github.com/cleishm/frequency-cpp.git" license: "MIT" -targets: - - esp32 - - esp32s2 - - esp32s3 - - esp32c3 - - esp32c6 - - esp32h2