diff --git a/CHANGELOG.md b/CHANGELOG.md index 029230d..356f122 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project are documented in this file. +## 0.1.3 - 2026-07-23 + +### Fixed + +- Keep UDP receive timeouts bounded when `poll()` is interrupted by signals, preventing repeated `EINTR` retries from extending the configured timeout. + ## 0.1.2 - 2026-07-22 ### Changed diff --git a/CMakeLists.txt b/CMakeLists.txt index 12fa496..100b749 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(netft VERSION 0.1.2 LANGUAGES CXX) +project(netft VERSION 0.1.3 LANGUAGES CXX) include(CTest) include(GNUInstallDirs) diff --git a/pixi.toml b/pixi.toml index 85f4138..f0a664f 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [workspace] name = "netft-cpp" -version = "0.1.2" +version = "0.1.3" channels = ["conda-forge"] platforms = ["linux-64", "linux-aarch64"]