Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 827 Bytes

CHANGELOG.md

File metadata and controls

22 lines (15 loc) · 827 Bytes

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[0.2.0] 2022-05-28

Second release of the tokio-task-manager crate.

  • add shutdown_gracefully_on_ctrl_c method as an alternative to wait:
    • the difference with wait is that it will block on the CTRL+C (SigInt) signal, and once received (or until no open tasks are alive) it will start the graceful shutdown process automatically;
  • add runnable TCP Echo Server example to showcase this new feature;
  • improve documentation comments and add crate example;

[0.1.0] 2022-05-27

Initial release of the tokio-task-manager crate, ready for production usage.