From 71c7aca29ca49102c0c6c01cca65e901bc0a0184 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Tue, 28 May 2019 09:09:00 -0400 Subject: [PATCH] Add top-level Makefile target to update frozen libs easily; Update CPX lib --- Makefile | 6 +++++- frozen/Adafruit_CircuitPython_CircuitPlayground | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5d5d99fb8a..dfb6e4b75f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Makefile for Sphinx documentation +# Top-level Makefile for documentation builds and miscellaneous tasks. # # You can set these variables from the command line. @@ -203,3 +203,7 @@ translate: locale/circuitpython.pot check-translate: locale/circuitpython.pot $(wildcard locale/*.po) $(PYTHON) tools/check_translations.py $^ + +update-frozen-libraries: + @echo "Updating all frozen libraries to latest tagged version." + cd frozen; for library in *; do cd $$library; ../../tools/git-checkout-latest-tag.sh; cd ..; done diff --git a/frozen/Adafruit_CircuitPython_CircuitPlayground b/frozen/Adafruit_CircuitPython_CircuitPlayground index 1d38fd81ed..0cc2e975ed 160000 --- a/frozen/Adafruit_CircuitPython_CircuitPlayground +++ b/frozen/Adafruit_CircuitPython_CircuitPlayground @@ -1 +1 @@ -Subproject commit 1d38fd81edd30f1bd70c0cfe77819ab610ea89a3 +Subproject commit 0cc2e975ed22ace0d679c6fb8f3388034b88bcf1