aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammed Suhail Munshi <MohammedSuhail.Munshi@arm.com>2022-05-11 16:38:12 +0100
committerAdnan AlSinan <adnan.alsinan@arm.com>2022-05-17 14:50:17 +0100
commitaae18e1e9932ad6608c7cf2915bcabc12d5000d9 (patch)
tree179fa54d7ab1f15dfaebcc4541660b39c608c2ad
parent856554e7e0ac2dd20f4aeebf5dd9ab3f0abd94e8 (diff)
downloadComputeLibrary-aae18e1e9932ad6608c7cf2915bcabc12d5000d9.tar.gz
Update SONAME_VERSION in SConscript
Part of : COMPMID-5265 Signed-off-by: Mohammed Suhail Munshi <MohammedSuhail.Munshi@arm.com> Change-Id: I23e76647610055f8a40757e0a9db133f38ea156e Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/c/VisualCompute/ComputeLibrary/+/419688 Tested-by: bsgcomp <bsgcomp@arm.com> Reviewed-by: Sheri Zhang <sheri.zhang@arm.com> Comments-Addressed: bsgcomp <bsgcomp@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7572 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Gunes Bayir <gunes.bayir@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConscript b/SConscript
index dac1c4ecca..4a832fcfaa 100644
--- a/SConscript
+++ b/SConscript
@@ -1,7 +1,7 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
-# Copyright (c) 2016-2021 Arm Limited.
+# Copyright (c) 2016-2022 Arm Limited.
#
# SPDX-License-Identifier: MIT
#
@@ -32,7 +32,7 @@ import json
import codecs
VERSION = "v0.0-unreleased"
-LIBRARY_VERSION_MAJOR = 26
+LIBRARY_VERSION_MAJOR = 27
LIBRARY_VERSION_MINOR = 0
LIBRARY_VERSION_PATCH = 0
SONAME_VERSION = str(LIBRARY_VERSION_MAJOR) + "." + str(LIBRARY_VERSION_MINOR) + "." + str(LIBRARY_VERSION_PATCH)