commit 5f7bbfe9da158f69a435da82c41a3de9e936cef0 parent 2f47593d9ceb7041fc2961d88413b80c2a07ecc5 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Wed, 30 Apr 2025 11:31:58 +0200 Prepare version 0.15 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 @@ -23,6 +23,18 @@ Edit config.mk as needed, then run: ## Release notes +### Version 0.15 + +- Keep RNG caches managed by proxy in memory to avoid write failures + when the temporary directory ran out of space. +- Reduce the size of the RNG cache managed by proxy to 4MB to limit the + memory footprint of the proxy. +- Write state cache in case of fatal error to help debug what went + wrong. +- Improve the building system. Simplify it by doing everything in one + place (Makefile). Provide additional macros to control installation + subdirectories. + ### Version 0.14 Replace CMake by Makefile as build system. The build procedure is diff --git a/config.mk b/config.mk @@ -1,4 +1,4 @@ -VERSION = 0.14.0 +VERSION = 0.15.0 PREFIX = /usr/local LIB_TYPE = SHARED