From 8a2704330c18532d79a65ad2733458a80bf9c5b8 Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Thu, 1 Jun 2023 20:08:17 +0000 Subject: Update version to 0.80.0 draft Signed-off-by: Eric Kunze Change-Id: Ie046531ee1d6a3977760aa3f8013f326e7c071f9 --- include/tosa_serialization_handler.h | 4 ++-- python/serializer/tosa_serializer.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/tosa_serialization_handler.h b/include/tosa_serialization_handler.h index daceecd..cae6a27 100644 --- a/include/tosa_serialization_handler.h +++ b/include/tosa_serialization_handler.h @@ -27,9 +27,9 @@ // Keep version number in sync with the version default value with schema/tosa.fbs #define TOSA_VERSION_MAJOR 0 -#define TOSA_VERSION_MINOR 70 +#define TOSA_VERSION_MINOR 80 #define TOSA_VERSION_PATCH 0 -#define TOSA_VERSION_DRAFT false +#define TOSA_VERSION_DRAFT true #define TENSOR_BUFFER_FORCE_ALIGNMENT 8 namespace tosa diff --git a/python/serializer/tosa_serializer.py b/python/serializer/tosa_serializer.py index 922da0b..c286f5f 100644 --- a/python/serializer/tosa_serializer.py +++ b/python/serializer/tosa_serializer.py @@ -32,9 +32,9 @@ import tosa.Op as TosaOp # Keep version number in sync with the version default value with schema/tosa.fbs TOSA_VERSION_MAJOR = 0 -TOSA_VERSION_MINOR = 70 +TOSA_VERSION_MINOR = 80 TOSA_VERSION_PATCH = 0 -TOSA_VERSION_DRAFT = False +TOSA_VERSION_DRAFT = True TOSA_VERSION = [ TOSA_VERSION_MAJOR, TOSA_VERSION_MINOR, -- cgit v1.2.1