From 1aa0811fe1cff59fc491d8ace2e15544da4e828f Mon Sep 17 00:00:00 2001 From: Colin Vanden Heuvel Date: Sun, 17 Apr 2022 14:12:46 -0500 Subject: [PATCH] Update CHANGELOG.md and bump version to 7.0.3 --- CHANGELOG.md | 10 ++++++++++ CMakeLists.txt | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4867fb5eb2..aa6b55f43b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ Change Log ========== +- [Release 7.0.3](#release-703---2022-04-17) - [Release 7.0.2](#release-702---2022-04-03) - [Release 7.0.1](#release-701---2022-01-07) - [Release 7.0.0](#release-700---2021-11-15) @@ -54,6 +55,15 @@ Change Log - [Eigen sparse matrices](#changed-eigen-sparse-matrices-and-updates-to-direct-sparse-linear-solvers) - [Release 4.0.0](#release-400---2019-02-22) + + +### Release 7.0.3 - 2022-04-17 + +### [Fixed] + +- SIMD detection is combined into one cmake script. +- Fixed SIMD feature detection with Clang, allowing support for Apple-M1 and generic AArch64 CPUs + ### Release 7.0.2 - 2022-04-03 ### [Fixed] diff --git a/CMakeLists.txt b/CMakeLists.txt index 155d08db73..d3a923ccd4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,7 @@ set_property(GLOBAL PROPERTY USE_FOLDERS Off) set(CHRONO_VERSION_MAJOR 7) set(CHRONO_VERSION_MINOR 0) -set(CHRONO_VERSION_PATCH 2) +set(CHRONO_VERSION_PATCH 3) project(Chrono VERSION ${CHRONO_VERSION_MAJOR}.${CHRONO_VERSION_MINOR}.${CHRONO_VERSION_PATCH})