From 735a65f1f132fec0cc8244e9956d938f9cfed465 Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Mon, 20 Jun 2022 16:09:47 +0100 Subject: [PATCH 1/3] Cleanup changelog formatting --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8097b90..865e9b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ Version 0.1.4 (6 September 2019) --------------------------------- -* Fix to cmake when building `qdldl::qdldlstatic` -* Fix to overflow issue when factoring very large matrices +* Fix to cmake when building `qdldl::qdldlstatic`. +* Fix to overflow issue when factoring very large matrices. + Version 0.1.3 (11 September 2018) ---------------------------------- From a85dd0ed7063162866a9856e4f508e2d4be98904 Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Mon, 20 Jun 2022 16:10:31 +0100 Subject: [PATCH 2/3] Add changelog entry for 0.1.5 --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 865e9b4..8a232bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +Version 0.1.5 (7 August 2020) +--------------------------------- +* Reduce the amount of memory access in each iteration of the solver loops. + + Version 0.1.4 (6 September 2019) --------------------------------- * Fix to cmake when building `qdldl::qdldlstatic`. From c79876aeb2917cc6c27d8d106b744d5e705697d1 Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Mon, 20 Jun 2022 16:18:28 +0100 Subject: [PATCH 3/3] Update changelog for 0.1.6 release --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a232bb..81c49cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +Version 0.1.6 (20 June 2022) +--------------------------------- +* Export the version number in CMake and in preprocessor macros. +* Add CMake options to enable/disable building the shared/static libraries and demo executable. +* Add symbol visibility information to the public API and build a Windows import library. +* Rename all CMake options to have a `QDLDL_` prefix, e.g. + * `DFLOAT` -> `QDLDL_FLOAT` + * `DLONG` -> `QDLDL_LONG` + * `UNITTESTS` -> `QDLDL_UNITTESTS` + + Version 0.1.5 (7 August 2020) --------------------------------- * Reduce the amount of memory access in each iteration of the solver loops.