From 90ea2f6c5b70c968f1fdf10780c04d1f13f89c22 Mon Sep 17 00:00:00 2001 From: Ivan Petkov Date: Sat, 25 Aug 2018 09:50:00 -0700 Subject: [PATCH] signal: Bump version to 0.2.3 --- CHANGELOG.md | 7 +++++-- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 388ca4f71..d03e13e01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] -## Features + +## [0.2.3] - 2018-08-25 +### Features * Exposes `SIGINFO` on BSD-based operating systems. (#46) ## [0.2.2] - 2018-08-14 @@ -22,6 +24,7 @@ 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.2...HEAD +[Unreleased]: https://github.com/alexcrichton/tokio-process/compare/0.2.3...HEAD +[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 161a2853d..385ac7d95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-signal" -version = "0.2.2" +version = "0.2.3" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/tokio-signal" diff --git a/README.md b/README.md index 5c01aa618..cb62dfbf4 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ First, add this to your `Cargo.toml`: ```toml [dependencies] -tokio-signal = "0.1" +tokio-signal = "0.2" ``` Next you can use this in conjunction with the `tokio` and `futures` crates: