rsimd

Make SIMD instruction sets easier to use
git clone git://git.meso-star.fr/rsimd.git
Log | Files | Refs | README | LICENSE

commit 662c4422c9d81d1236e49276929eabbf7c3e0b90
parent 2d151ca93128a8e01479e1bcec350b73f07aafd4
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri,  5 May 2023 10:20:18 +0200

Merge branch 'release_0.4.0' into develop

Diffstat:
MREADME.md | 12++++++++++++
Mcmake/CMakeLists.txt | 2+-
2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -21,6 +21,18 @@ project. ## Release notes +### Version 0.4 + +- Make the sleef library an internal dependency that library users don't have + to worry about: calls to the sleef library are moved from API headers to C + files. +- Set the C standard to C99 instead of C89: this allows the use of official + (i.e. unpatched) sleef headers whose comments are written using C99-style + comments. Note that since sleef is now an internal dependency, the rsimd API + remains C89 compliant. +- Remove the file COPYING.LESSER from the installation target: since version + 0.3, the library is distributed under GPLv3+. + ### Version 0.3 - Add 8-way vector API for the float and int32 types. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -90,7 +90,7 @@ endif() # Configure and define targets ################################################################################ set(VERSION_MAJOR 0) -set(VERSION_MINOR 3) +set(VERSION_MINOR 4) set(VERSION_PATCH 0) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})