aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2023-12-14 19:44:11 +0000
committerEric Kunze <eric.kunze@arm.com>2023-12-14 19:44:11 +0000
commite29a1cd18884185634f6ccf9d5afe070cea96cd9 (patch)
tree91463337cc0aa95b4fc4015bb3764c04129bebb3
parent0925d40d0cf64ea1836218671f29a2c37df13662 (diff)
downloadserialization_lib-e29a1cd18884185634f6ccf9d5afe070cea96cd9.tar.gz
Update version to 0.80.1
Syncrhonizing some of the backporting work to a consistent patch version. Signed-off-by: Eric Kunze <eric.kunze@arm.com> Change-Id: I38acf338519fd64b34556a24b1adc10622aabac4
-rw-r--r--include/tosa_serialization_handler.h2
-rw-r--r--python/serializer/tosa_serializer.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/tosa_serialization_handler.h b/include/tosa_serialization_handler.h
index e89ad0d..38ebe0b 100644
--- a/include/tosa_serialization_handler.h
+++ b/include/tosa_serialization_handler.h
@@ -28,7 +28,7 @@
// Keep version number in sync with the version default value with schema/tosa.fbs
#define TOSA_VERSION_MAJOR 0
#define TOSA_VERSION_MINOR 80
-#define TOSA_VERSION_PATCH 0
+#define TOSA_VERSION_PATCH 1
#define TOSA_VERSION_DRAFT false
#define TENSOR_BUFFER_FORCE_ALIGNMENT 8
diff --git a/python/serializer/tosa_serializer.py b/python/serializer/tosa_serializer.py
index da7c62c..86ff936 100644
--- a/python/serializer/tosa_serializer.py
+++ b/python/serializer/tosa_serializer.py
@@ -33,7 +33,7 @@ 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 = 80
-TOSA_VERSION_PATCH = 0
+TOSA_VERSION_PATCH = 1
TOSA_VERSION_DRAFT = False
TOSA_VERSION = [
TOSA_VERSION_MAJOR,