Skip to content

Commit 9c20a65

Browse files
committed
Release v 0.3.14
1 parent 09e8930 commit 9c20a65

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.3.14
2+
3+
* Added the SIGINFO signal (where available).
4+
15
# signal-hook-mio-0.2.3
26

37
* Support for mio 0.8

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "signal-hook"
3-
version = "0.3.13"
3+
version = "0.3.14"
44
authors = [
55
"Michal 'vorner' Vaner <vorner@vorner.cz>",
66
"Thomas Himmelstoss <thimm@posteo.de>",

src/lib.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -378,8 +378,12 @@ pub mod consts {
378378
pub use libc::SIGIO;
379379

380380
#[cfg(any(
381-
target_os="freebsd", target_os="dragonfly", target_os="netbsd", target_os="openbsd",
382-
target_os="macos"))]
381+
target_os = "freebsd",
382+
target_os = "dragonfly",
383+
target_os = "netbsd",
384+
target_os = "openbsd",
385+
target_os = "macos"
386+
))]
383387
pub use libc::SIGINFO;
384388

385389
#[cfg(windows)]

src/low_level/signal_details.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,12 @@ const DETAILS: &[Details] = &[
4848
s!(SIGILL, Term),
4949
s!(SIGINT, Term),
5050
#[cfg(any(
51-
target_os="freebsd", target_os="dragonfly", target_os="netbsd",
52-
target_os="openbsd", target_os="macos"))]
51+
target_os = "freebsd",
52+
target_os = "dragonfly",
53+
target_os = "netbsd",
54+
target_os = "openbsd",
55+
target_os = "macos"
56+
))]
5357
s!(SIGINFO, Ignore),
5458
#[cfg(not(target_os = "haiku"))]
5559
s!(SIGIO, Ignore),

0 commit comments

Comments
 (0)