From 454d3f75dff877cea363375bf4a27850d5fd5a1d Mon Sep 17 00:00:00 2001 From: Anitha Raj Date: Mon, 13 Nov 2023 13:35:05 +0000 Subject: Update SONAME_VERSION in SConscript and VERSION in CMakeLists Resolves COMPMID-6369 Change-Id: I67dd589cdc02070dafe6f000988e6abafd6c5d79 Signed-off-by: Anitha Raj Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10722 Reviewed-by: Jakub Sujak Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Benchmark: Arm Jenkins --- CMakeLists.txt | 2 +- SConscript | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bf029a7e9e..9dd3e2cef7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,7 @@ cmake_minimum_required(VERSION 3.13 FATAL_ERROR) list(APPEND CMAKE_MESSAGE_CONTEXT ArmCompute) project( ArmCompute - VERSION 32.0.0 + VERSION 33.0.0 DESCRIPTION "The Arm Compute Library is a collection of low-level machine learning functions optimized for Arm® Cortex®-A CPU and Arm® Mali™ GPU architectures" LANGUAGES C CXX ASM) diff --git a/SConscript b/SConscript index 8685d01388..df2a0a7e2c 100644 --- a/SConscript +++ b/SConscript @@ -39,7 +39,7 @@ warn(DeprecatedWarning, ) VERSION = "v0.0-unreleased" -LIBRARY_VERSION_MAJOR = 32 +LIBRARY_VERSION_MAJOR = 33 LIBRARY_VERSION_MINOR = 0 LIBRARY_VERSION_PATCH = 0 SONAME_VERSION = str(LIBRARY_VERSION_MAJOR) + "." + str(LIBRARY_VERSION_MINOR) + "." + str(LIBRARY_VERSION_PATCH) -- cgit v1.2.1