summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 681cd4d3..bbc01bc6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,20 @@
-## Release `1.1.1` (UNRELEASED)
+## Release `1.1.1` (2023-06-02)
Bug fixes on top of release `1.1.0`.
+### Fixes
+
+- Removed potential uses of `malloc` between `fork` and `exec`.
+ This removes the risk of deadlocks on certain combinations of
+ `C++` standard library and `libc`.
+- The link flags for the final linking now can be set via the
+ configuration variable `FINAL_LDFLAGS`; in particular, the stack
+ size can easily be adapted. The default stack size is now set to
+ 8M, removing an overflow on systems where the default stack size
+ was significantly lower.
+- The man pages are now provided as markdown files, allowing to
+ potentially reduce the build dependencies to more standard ones.
+
## Release `1.1.0` (2023-05-19)
A feature release on top of `1.0.0`, backwards compatible.