From 8a7eedf8d3cb368b2bdf14a8f819381ac317719c Mon Sep 17 00:00:00 2001 From: Pierre Blanchard Date: Thu, 6 Jun 2024 11:19:06 +0000 Subject: [PATCH] SLEEF Release 3.6.1 Bump version in CMakeLists. --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ CMakeLists.txt | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d3f067a..75095533 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +## 3.6.1 - 2024-06-10 + +This patch release provides important bug fixes, including a fix +for API compatibility with 3.5 (#534). +The support and test for some features is still limited, as +documented in [README](./README.md), however significant progress +was made in order to test on Linux, macOS and Windows. + +### Added +- Add support for RISC-V in DFT, QUAD and inline headers (#503, + #522). +- Add GHA workflow to run CI tests on Windows x86 (#540) and macOS + x86/aarch64 (#543). And update test matrix. +- Add GHA workflows to run examples in CI (#550). + +### Changed +- Cleanup/Improve support for RISC-V in LIBM (#520, #521). +- Update supported environment in documentation (#529, #549), + including website and test matrix from README. + +### Fixed +- Major fix and cleanup of CMakeLists.txt (#531). +- Fix compatibility issue after removal of quad and long double + sincospi (#545). Restores functions that are missing in 3.6. +- Various bug fixes (#528, #533, #536, #537). + ## 3.6 - 2024-02-14 This release follows a long period of inactivity. The library is now diff --git a/CMakeLists.txt b/CMakeLists.txt index ad313862..0516fc6e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.18) -project(SLEEF VERSION 3.6.0 LANGUAGES C) +project(SLEEF VERSION 3.6.1 LANGUAGES C) set(SLEEF_SOVERSION ${SLEEF_VERSION_MAJOR})