From 3b139a478693e7461281dfa80cb0a5287c721c41 Mon Sep 17 00:00:00 2001 From: Dwight Lidman Date: Mon, 23 Aug 2021 14:53:47 +0200 Subject: 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 Change-Id: I32f559d626e0f4e93c522813b6f4e12beaa50e57 --- ethosu/vela/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}" -- cgit v1.2.1