From 72f9abaa81081e51d08b593b6cc61549e0c4bf3a Mon Sep 17 00:00:00 2001 From: Xudong Han <42986190+han-xudong@users.noreply.github.com> Date: Thu, 23 Jul 2026 18:20:30 +0800 Subject: [PATCH] release: prepare 0.1.3 --- CHANGELOG.md | 6 ++++++ CMakeLists.txt | 2 +- pixi.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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"]