From 98e76d9bc610cda12d2baead476bb8bcf9eff3d0 Mon Sep 17 00:00:00 2001 From: Ivan Petkov Date: Sat, 25 Aug 2018 11:16:54 -0700 Subject: [PATCH] signal: Bump version to to 0.2.4 --- CHANGELOG.md | 7 ++++++- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d03e13e01..bd030c49e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.2.4] - 2018-08-25 +### Fixes +* Actually make `unix::bsd` public + ## [0.2.3] - 2018-08-25 ### Features * Exposes `SIGINFO` on BSD-based operating systems. (#46) @@ -24,7 +28,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. * Uses `tokio` instead of `tokio_core` (#24) * Supports all 33 signals on FreeBSD (#27) -[Unreleased]: https://github.com/alexcrichton/tokio-process/compare/0.2.3...HEAD +[Unreleased]: https://github.com/alexcrichton/tokio-process/compare/0.2.4...HEAD +[0.2.4]: https://github.com/alexcrichton/tokio-signal/compare/0.2.3...0.2.4 [0.2.3]: https://github.com/alexcrichton/tokio-signal/compare/0.2.2...0.2.3 [0.2.2]: https://github.com/alexcrichton/tokio-signal/compare/0.2.1...0.2.2 [0.2.1]: https://github.com/alexcrichton/tokio-signal/compare/0.2.0...0.2.1 diff --git a/Cargo.toml b/Cargo.toml index 385ac7d95..2bad85f69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-signal" -version = "0.2.3" +version = "0.2.4" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/tokio-signal"