From d8cb41d94cbd08cd395b3f87f40a5829712f032a Mon Sep 17 00:00:00 2001 From: Emil Ohlsson Date: Fri, 10 Jan 2025 08:50:59 +0100 Subject: [PATCH] Set version to 1.2.0 Signed-off-by: Emil Ohlsson --- CHANGELOG.md | 4 +++- CMakeLists.txt | 2 +- kai/kai_common.h | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82394453..5a5fb837 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ @@ -10,6 +10,8 @@ KleidiAI follows the [Semantic Versioning](https://semver.org/) specification fo ## Upcoming Release +## v1.2.0 + - New SME micro-kernels: - Matrix multiplication (MxN) for BF16 inputs with F32 output. - Add MSVC support for test framework diff --git a/CMakeLists.txt b/CMakeLists.txt index 73293cd0..5154e426 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.16) project(KleidiAI - VERSION 1.1.0 + VERSION 1.2.0 LANGUAGES C CXX ) diff --git a/kai/kai_common.h b/kai/kai_common.h index 917d008a..79b08978 100644 --- a/kai/kai_common.h +++ b/kai/kai_common.h @@ -1,5 +1,5 @@ // -// SPDX-FileCopyrightText: Copyright 2024 Arm Limited and/or its affiliates +// SPDX-FileCopyrightText: Copyright 2024-2025 Arm Limited and/or its affiliates // // SPDX-License-Identifier: Apache-2.0 // @@ -58,7 +58,7 @@ extern "C" { /// /// @return Project version as a string literal. inline const char* kai_get_version(void) { - return "1.1.0"; + return "1.2.0"; } /// KleidiAI data types -- GitLab