From a421ed34f8ccebee104fd87c67cff9f0187c1213 Mon Sep 17 00:00:00 2001 From: Bi0T1N Date: Sat, 20 Aug 2022 22:37:53 +0200 Subject: [PATCH] Add changes for new SDF version 1.10 Signed-off-by: Bi0T1N --- sdf/embedSdf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdf/embedSdf.py b/sdf/embedSdf.py index 3e1df5070..b89607fa6 100644 --- a/sdf/embedSdf.py +++ b/sdf/embedSdf.py @@ -6,11 +6,11 @@ # The list of supported SDF specification versions. This will let us drop # versions without removing the directories. -SUPPORTED_SDF_VERSIONS = ['1.9', '1.8', '1.7', '1.6', '1.5', '1.4', '1.3', '1.2'] +SUPPORTED_SDF_VERSIONS = ['1.10', '1.9', '1.8', '1.7', '1.6', '1.5', '1.4', '1.3', '1.2'] # The list of supported SDF conversions. This list includes versions that # a user can convert an existing SDF version to. -SUPPORTED_SDF_CONVERSIONS = ['1.9', '1.8', '1.7', '1.6', '1.5', '1.4', '1.3'] +SUPPORTED_SDF_CONVERSIONS = ['1.10', '1.9', '1.8', '1.7', '1.6', '1.5', '1.4', '1.3'] # whitespace indentation for C++ code INDENTATION = ' '