From e22f2682fda87bab77c87903875634f64999c653 Mon Sep 17 00:00:00 2001 From: Jens Elofsson Date: Thu, 13 Feb 2025 10:24:13 +0100 Subject: [PATCH] Set version to 1.4.0 Update all version indicators to 1.4.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 d450c0a5..d6a5db4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ KleidiAI follows the [Semantic Versioning](https://semver.org/) specification fo ## Upcoming Release +## 1.4.0 + - New Advanced SIMD micro-kernels: - New 4x8 block size variant of matrix multiplication of QAI8DXP LHS and QSI4C32P RHS with F32 output. - Optimizations for FEAT_DotProd. diff --git a/CMakeLists.txt b/CMakeLists.txt index b6a139db..7fc35394 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.16) project(KleidiAI - VERSION 1.3.0 + VERSION 1.4.0 LANGUAGES C CXX ) diff --git a/kai/kai_common.h b/kai/kai_common.h index 26ff525e..baa7c6cb 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.3.0"; + return "1.4.0"; } /// KleidiAI data types -- GitLab