From c5494730bf601599a55f4e77f357b51ba590585e Mon Sep 17 00:00:00 2001 From: Pierre Blanchard Date: Mon, 16 Sep 2024 11:38:44 +0000 Subject: [PATCH] SLEEF Release 3.7 Bump version in CMakeLists. --- CHANGELOG.md | 24 ++++++++++++++++++++++++ CMakeLists.txt | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75095533..71187103 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## 3.7 - 2024-09-17 + +The focus of this release has been to meet open-source community standards. It +does so by providing Contributing Guidelines, Issues and Pull-Requests +templates. Additionally, the documentation has been reworked to improve +navigation (via search bar, side menu/panel, eased navigation on GitHub, ...) +and maintainability (reduced line count, mostly markdown sources, ...). The +website rendering is now delegated to a template customisable theme. See the +new website at [sleef.org](https://sleef.org/), and [docs/](./docs) for the +GitHub-rendered documentation. The release also provides various bug fixes on +several targets, for CPU detection and in the benchmark infrastructure. + +### Added +- Add issue and PR templates. by @blapie in https://github.com/shibatch/sleef/pull/565 + +### Changed +- Adjust scheduling of GHA workflows by @blapie in https://github.com/shibatch/sleef/pull/553 +- Port documentation from html to markdown by @blapie in https://github.com/shibatch/sleef/pull/564 +- Update acosh documentation by @joanaxcruz in https://github.com/shibatch/sleef/pull/572 + +### Fixed +- S/390: Use getauxval for detecting VXE2 to fix #560 by @Andreas-Krebbel in https://github.com/shibatch/sleef/pull/561 +- Revive micro-benchmarks for vector functions by @joanaxcruz in https://github.com/shibatch/sleef/pull/571 + ## 3.6.1 - 2024-06-10 This patch release provides important bug fixes, including a fix diff --git a/CMakeLists.txt b/CMakeLists.txt index 0516fc6e..1f1bc05b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.18) -project(SLEEF VERSION 3.6.1 LANGUAGES C) +project(SLEEF VERSION 3.7.0 LANGUAGES C) set(SLEEF_SOVERSION ${SLEEF_VERSION_MAJOR})