From e1afface0e8e5df5995824dbc72c82f2e330111e Mon Sep 17 00:00:00 2001 From: cptpcrd <31829097+cptpcrd@users.noreply.github.com> Date: Thu, 27 Aug 2020 10:24:59 -0400 Subject: [PATCH] release: v0.2.1 CHANGELOG: - Add new (Unix-only) set_fds_cloexec() helper - FreeBSD: Don't use the kern.proc.nfds sysctl from close_open_fds() (since closefrom() can be used to provide a performance boost on the BSDs, and kern.proc.nfds may actually slow that down) - Internal reorganization - Improved documentation --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5f9029c..e52cfc2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "close_fds" -version = "0.2.0" +version = "0.2.1" edition = "2018" description = "A library that makes it easy to close all open file descriptors."