Skip to content

Commit 6e44722

Browse files
committed
Version bump to 0.4.0
Not bumping the async crates - they use it, but they don't expose the changed API.
1 parent 80cc0cf commit 6e44722

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.4
2+
3+
* Changed the `low_level::pipe` to look `OwnedFd` instead of `IntoRawFd`, to
4+
enforce ownership of the file descriptor (#196).
5+
16
# signal-hook-registry-1.4.8
27

38
* Restore errno on signal handler exit (#194, #191).

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

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

signal-hook-async-std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ maintenance = { status = "actively-developed" }
2323
libc = "~0.2"
2424
async-io = "~2"
2525
futures-lite = "~2"
26-
signal-hook = { version = "~0.3", path = ".." }
26+
signal-hook = { version = "~0.4", path = ".." }
2727

2828
[dev-dependencies]
2929
async-std = { version = "~1", features = ["attributes"] }

signal-hook-mio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ support-v1_0 = ["mio-1_0"]
2828

2929
[dependencies]
3030
libc = "~0.2"
31-
signal-hook = { version = "~0.3", path = ".." }
31+
signal-hook = { version = "~0.4", path = ".." }
3232
mio-1_0 = { package = "mio", version = "1.0", features = ["net", "os-ext"], optional = true }
3333
mio-0_8 = { package = "mio", version = "~0.8", features = ["net", "os-ext"], optional = true }
3434
mio-0_7 = { package = "mio", version = "~0.7", features = ["os-util", "uds"], optional = true }

signal-hook-registry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ libc = "^0.2"
2323
errno = "0.2"
2424

2525
[dev-dependencies]
26-
signal-hook = { version = "~0.3", path = ".." }
26+
signal-hook = { version = "~0.4", path = ".." }
2727

2828
[lints.clippy]
2929
# actually necessary because Rust 1.26 doesn't support allow(clippy::foo) syntax

signal-hook-tokio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ futures-v0_3 = ["futures-core-0_3"]
2424

2525
[dependencies]
2626
libc = "~0.2"
27-
signal-hook = { version = "~0.3", path = ".." }
27+
signal-hook = { version = "~0.4", path = ".." }
2828
futures-core-0_3 = { package = "futures-core", version = "~0.3", optional = true }
2929
tokio = { version = "~1", features = ["net"] }
3030

0 commit comments

Comments
 (0)