From afa32435319e386c73fd13cedc2939c1c624c8f2 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Fri, 3 Sep 2021 11:26:12 -0700 Subject: [PATCH] Remove leading zeros from month and day components of date based version to comply with semver spec Thanks to @The-Compiler for catching the issue --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cc230a9d..b489534a 100644 --- a/Makefile +++ b/Makefile @@ -114,7 +114,7 @@ $(SMOKE_SKETCHES): force build-arduino-nightly-package: perl bin/build-arduino-package \ --kaleidoscope-tag=master \ - --version `date +%Y.%m.%d%H%M%S` \ + --version `date +%Y.%-m.%-d%H%M%S` \ --index-filename-slug=kaleidoscope_master \ --only-one-platform-revision \ --push \