From a292909c2181dc3eaab3645c540a582411ddee9b Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Thu, 28 Jan 2021 11:09:41 -0800 Subject: [PATCH] Stop releasing for 5.x 5.x bundles would break with the pwmio.PWMOut changes otherwise. --- circuitpython_build_tools/target_versions.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/circuitpython_build_tools/target_versions.py b/circuitpython_build_tools/target_versions.py index df6547d..0e7f99d 100644 --- a/circuitpython_build_tools/target_versions.py +++ b/circuitpython_build_tools/target_versions.py @@ -25,6 +25,5 @@ # The tag specifies which version of CircuitPython to use for mpy-cross. # The name is used when constructing the zip file names. VERSIONS = [ - {"tag": "5.3.1", "name": "5.x"}, - {"tag": "6.0.1", "name": "6.x"}, + {"tag": "6.1.0", "name": "6.x"}, ]