aboutsummaryrefslogtreecommitdiff
path: root/SConscript
diff options
context:
space:
mode:
authorOmar Al Khatib <omar.alkhatib@arm.com>2023-05-09 15:24:16 +0100
committerOmar Al Khatib <omar.alkhatib@arm.com>2023-05-10 13:21:54 +0000
commit4494b552619a1431365dbe6a25db06647ebb129f (patch)
treee5bd2f46edc8d6c7276c69f034b2a11f1c6ca6a8 /SConscript
parent0ed0ddd7904afaebf09729acff403ff437905d3b (diff)
downloadComputeLibrary-4494b552619a1431365dbe6a25db06647ebb129f.tar.gz
Update SONAME_VERSION in SConscript
Partially resolves: [COMPMID-5888] Signed-off-by: Omar Al Khatib <omar.alkhatib@arm.com> Change-Id: I8eb5a7a37cb39f4fd450fc4da4e15c4039aa5ac0 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9596 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Jakub Sujak <jakub.sujak@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'SConscript')
-rw-r--r--SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConscript b/SConscript
index c774a55d22..72b6303d9c 100644
--- a/SConscript
+++ b/SConscript
@@ -32,9 +32,9 @@ import json
import codecs
VERSION = "v0.0-unreleased"
-LIBRARY_VERSION_MAJOR = 30
+LIBRARY_VERSION_MAJOR = 31
LIBRARY_VERSION_MINOR = 0
-LIBRARY_VERSION_PATCH = 1
+LIBRARY_VERSION_PATCH = 0
SONAME_VERSION = str(LIBRARY_VERSION_MAJOR) + "." + str(LIBRARY_VERSION_MINOR) + "." + str(LIBRARY_VERSION_PATCH)
Import('env')