From cc4c2ca4d0eb69018ea9ae5ec5e280e401741eab Mon Sep 17 00:00:00 2001 From: "ramy.elgammal@arm.com" Date: Wed, 28 Jun 2023 16:04:04 +0100 Subject: Update SONAME_VERSION in SConscript and CMake for release 23.05.1 Resolves: COMPMID-6328 Signed-off-by: ramy.elgammal@arm.com Change-Id: Id9f8bcc726add6f82ac76b29d8979d7c5f1ba836 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9838 Benchmark: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Jakub Sujak Comments-Addressed: Arm Jenkins --- CMakeLists.txt | 2 +- SConscript | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9dccdba00d..8ab69f7311 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 28.0.8 + VERSION 31.0.1 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 72b6303d9c..385e8d87f3 100644 --- a/SConscript +++ b/SConscript @@ -34,7 +34,7 @@ import codecs VERSION = "v0.0-unreleased" LIBRARY_VERSION_MAJOR = 31 LIBRARY_VERSION_MINOR = 0 -LIBRARY_VERSION_PATCH = 0 +LIBRARY_VERSION_PATCH = 1 SONAME_VERSION = str(LIBRARY_VERSION_MAJOR) + "." + str(LIBRARY_VERSION_MINOR) + "." + str(LIBRARY_VERSION_PATCH) Import('env') -- cgit v1.2.1