aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDwight Lidman <dwight.lidman@arm.com>2021-08-23 14:53:47 +0200
committerDwight Lidman <dwight.lidman@arm.com>2021-08-23 17:49:41 +0200
commit3b139a478693e7461281dfa80cb0a5287c721c41 (patch)
treef645bf4fcf323a75a39807a6d771fb8418429c9c
parentb9c954273daf16e16264cb332ad84a3cced2663e (diff)
downloadethos-u-vela-3b139a478693e7461281dfa80cb0a5287c721c41.tar.gz
Step up external API version
A commit pertaining to MLBEDSW-4738 where the functionality of find_block_configs() in the external API was reinstated had previously been merged, but was done without increasing the API version. This commit amends that mistake. Signed-off-by: Dwight Lidman <dwight.lidman@arm.com> Change-Id: I32f559d626e0f4e93c522813b6f4e12beaa50e57
-rw-r--r--ethosu/vela/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethosu/vela/api.py b/ethosu/vela/api.py
index e31c373a..69c60406 100644
--- a/ethosu/vela/api.py
+++ b/ethosu/vela/api.py
@@ -26,7 +26,7 @@ from typing import Tuple
import numpy
API_VERSION_MAJOR = 1
-API_VERSION_MINOR = 0
+API_VERSION_MINOR = 1
API_VERSION = f"{API_VERSION_MAJOR}.{API_VERSION_MINOR}"