From 29f673f579f69bff29606b057102a6eb59101b00 Mon Sep 17 00:00:00 2001 From: Anton Bondarenko Date: Tue, 1 Jul 2025 07:20:47 +0200 Subject: [PATCH] Bump version to v1.11.0 Signed-off-by: Anton Bondarenko --- 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 a4b90d29..1fb3388d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ KleidiAI follows the [Semantic Versioning](https://semver.org/) specification fo ## Upcoming Release +## v1.11.0 + - New Advanced SIMD micro-kernels: - Optimized version of kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0 kernel for block depth of 4 bytes (`kai_rhs_pack_nxk_qsi4c32pnrx4_qsu4c32s1s0_neon`) - Improve performance of `kai_rhs_pack_nxk_qsi4c32pnrx8_qsu4c32s1s0_neon` diff --git a/CMakeLists.txt b/CMakeLists.txt index 1673084c..e4597460 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.16) project(KleidiAI - VERSION 1.10.0 + VERSION 1.11.0 LANGUAGES C CXX ) diff --git a/kai/kai_common.h b/kai/kai_common.h index a2bb268b..fb3003f7 100644 --- a/kai/kai_common.h +++ b/kai/kai_common.h @@ -61,7 +61,7 @@ extern "C" { /// /// @return Project version as a string literal. inline const char* kai_get_version(void) { - return "1.10.0"; + return "1.11.0"; } /// KleidiAI data types -- GitLab