From f6a3a338c0253b8fe6411809ce240b1aef872cd1 Mon Sep 17 00:00:00 2001 From: Ivan FB Date: Mon, 8 Jun 2026 18:23:03 +0200 Subject: [PATCH] update changelog and ffi.nimble for v0.1.5 --- CHANGELOG.md | 9 +++++++++ ffi.nimble | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0464c3..88f7f1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.5] - 2026-06-08 + +[Full changelog](https://github.com/logos-messaging/nim-ffi/compare/v0.1.4...v0.1.5) + +### Fixed + +- Recycle FFI contexts in the pool instead of tearing them down per cycle, + stopping a per-cycle file-descriptor leak (#74). + ## [0.1.4] - 2026-06-02 [Full changelog](https://github.com/logos-messaging/nim-ffi/compare/v0.1.3...v0.1.4) diff --git a/ffi.nimble b/ffi.nimble index d03269c..67e780e 100644 --- a/ffi.nimble +++ b/ffi.nimble @@ -1,6 +1,6 @@ # ffi.nimble -version = "0.1.4" +version = "0.1.5" author = "Institute of Free Technology" description = "FFI framework with custom header generation" license = "MIT or Apache License 2.0"