From 63d45ab961b2ade260264312ce4f064dce4875d8 Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Thu, 25 May 2023 16:18:02 -0700 Subject: Remove draft tag from 0.70 serialization library Signed-off-by: Eric Kunze Change-Id: If99d07bdad463346da957b6fa16231f818b86728 --- include/tosa_serialization_handler.h | 2 +- python/serializer/tosa_serializer.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tosa_serialization_handler.h b/include/tosa_serialization_handler.h index 1665bfa..daceecd 100644 --- a/include/tosa_serialization_handler.h +++ b/include/tosa_serialization_handler.h @@ -29,7 +29,7 @@ #define TOSA_VERSION_MAJOR 0 #define TOSA_VERSION_MINOR 70 #define TOSA_VERSION_PATCH 0 -#define TOSA_VERSION_DRAFT true +#define TOSA_VERSION_DRAFT false #define TENSOR_BUFFER_FORCE_ALIGNMENT 8 namespace tosa diff --git a/python/serializer/tosa_serializer.py b/python/serializer/tosa_serializer.py index 416fcf4..922da0b 100644 --- a/python/serializer/tosa_serializer.py +++ b/python/serializer/tosa_serializer.py @@ -34,7 +34,7 @@ import tosa.Op as TosaOp TOSA_VERSION_MAJOR = 0 TOSA_VERSION_MINOR = 70 TOSA_VERSION_PATCH = 0 -TOSA_VERSION_DRAFT = True +TOSA_VERSION_DRAFT = False TOSA_VERSION = [ TOSA_VERSION_MAJOR, TOSA_VERSION_MINOR, -- cgit v1.2.1