From 40c77bd17e4f3c1c838e9c557c135c76f1d5f329 Mon Sep 17 00:00:00 2001 From: Markus Westerlind Date: Sun, 6 May 2018 21:50:41 +0200 Subject: [PATCH] signal: Version 0.2 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..8266f32e4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ + +## v0.2.0 (2018-05-07) + +#### Features + * Uses `tokio` instead of `tokio_core` (#24) + * Supports all 33 signals on FreeBSD (#27) + diff --git a/Cargo.toml b/Cargo.toml index 92ad04524..df8250e2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-signal" -version = "0.1.5" +version = "0.2.0" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/tokio-signal"