From 5e098dbda1580818ec2013def6065581b7e7dee9 Mon Sep 17 00:00:00 2001 From: Jens Elofsson Date: Mon, 24 Mar 2025 14:56:24 +0100 Subject: [PATCH] Set version to 1.6.0 Update all version indicators to 1.6.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 d7d218ea..1247ef29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ KleidiAI follows the [Semantic Versioning](https://semver.org/) specification fo ## Upcoming Release +## v1.6.0 + - Add CMake installation and `find_package()` support. - Optimize RHS packing qsu4c32s16s0->qsi4c32pscalef16 - Fixes: diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d4dbdb4..fa6993d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.16) project(KleidiAI - VERSION 1.5.0 + VERSION 1.6.0 LANGUAGES C CXX ) diff --git a/kai/kai_common.h b/kai/kai_common.h index 54c5efdc..c1cb1eca 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.5.0"; + return "1.6.0"; } /// KleidiAI data types -- GitLab