From eb234066fbf4874f342654bd998a1bb7ae597680 Mon Sep 17 00:00:00 2001 From: Jens Elofsson Date: Mon, 3 Mar 2025 09:55:22 +0100 Subject: [PATCH] Set version to 1.5.0 Update all version indicators to 1.5.0. Signed-off-by: Jens Elofsson --- CHANGELOG.md | 2 ++ CMakeLists.txt | 2 +- kai/kai_common.h | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80be6e69..b297a7c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ KleidiAI follows the [Semantic Versioning](https://semver.org/) specification fo ## Upcoming Release +## v1.5.0 + - Extend benchmark tool to support all matrix multiplication micro-kernels. - New Advanced SIMD micro-kernels: - New 4x8 block size variant of matrix multiplication of QAI8DXP LHS and QSI4C32P RHS with F32 output. diff --git a/CMakeLists.txt b/CMakeLists.txt index f7853fd3..45c95c39 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.16) project(KleidiAI - VERSION 1.4.0 + VERSION 1.5.0 LANGUAGES C CXX ) diff --git a/kai/kai_common.h b/kai/kai_common.h index baa7c6cb..54c5efdc 100644 --- a/kai/kai_common.h +++ b/kai/kai_common.h @@ -58,7 +58,7 @@ extern "C" { /// /// @return Project version as a string literal. inline const char* kai_get_version(void) { - return "1.4.0"; + return "1.5.0"; } /// KleidiAI data types -- GitLab