commit 23f0bf6c57624377d3cc4d14e9889c355abd12ca parent 07c2537259b823fc0831a9aa296c3cc8d03b7f1c Author: vaplv <vaplv@free.fr> Date: Tue, 13 May 2025 16:06:24 +0200 Prepare version 0.6 Set version number and write release notes Diffstat:
| M | README.md | | | 12 | ++++++++++++ |
| M | config.mk | | | 2 | +- |
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md @@ -22,6 +22,18 @@ Edit config.mk as needed, then run: ## Release notes +### Version 0.6 + +- Fix API headers. Do not include headers (even conditionaly) that + depend on SIMD instructions disabled when compiling the library. The + client application could activate compilation options that enabled + their inclusion, while they were not installed. +- Improves the construction system. Simplifies it by doing everything in + one place (the Makefile). Provides additional macros to control + installation subdirectories. Do not detect SIMD instructions to be + activated at the time of compilation: let them be explicitly defined + by the configuration file. + ### Version 0.5 - Replace CMake by Makefile as build system. diff --git a/config.mk b/config.mk @@ -1,4 +1,4 @@ -VERSION = 0.5.0 # Library version +VERSION = 0.6.0 # Library version PREFIX = /usr/local LIB_TYPE = SHARED