From 44df5b14cb6420e60f511b1e19c829000cdb5842 Mon Sep 17 00:00:00 2001 From: Jens Elofsson Date: Mon, 14 Apr 2025 09:59:20 +0200 Subject: [PATCH] Set version to 1.7.0 Update all version indicators to 1.7.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 17b6f967..f5d8dd7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ KleidiAI follows the [Semantic Versioning](https://semver.org/) specification fo ## Upcoming Release +## v1.7.0 + - New SME micro-kernels: - Indirect matrix multiplication (MxN) of QAI8 input and output. - Packing kernels for LHS and RHS diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ff5d805..32fda7ee 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.16) project(KleidiAI - VERSION 1.6.0 + VERSION 1.7.0 LANGUAGES C CXX ) diff --git a/kai/kai_common.h b/kai/kai_common.h index 47e00bfa..6dc71d10 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.6.0"; + return "1.7.0"; } /// KleidiAI data types -- GitLab