aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2023-06-01 20:08:17 +0000
committerEric Kunze <eric.kunze@arm.com>2023-06-01 20:08:17 +0000
commit8a2704330c18532d79a65ad2733458a80bf9c5b8 (patch)
tree566c3fa4c3480c90ca0a48d05b8bc46d2a1d0ee7
parent63d45ab961b2ade260264312ce4f064dce4875d8 (diff)
downloadserialization_lib-8a2704330c18532d79a65ad2733458a80bf9c5b8.tar.gz
Update version to 0.80.0 draft
Signed-off-by: Eric Kunze <eric.kunze@arm.com> Change-Id: Ie046531ee1d6a3977760aa3f8013f326e7c071f9
-rw-r--r--include/tosa_serialization_handler.h4
-rw-r--r--python/serializer/tosa_serializer.py4
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,