diff --git a/CHANGELOG.md b/CHANGELOG.md index a22da71..af7a404 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.2] - 2021-12-05 +### Updated +- Improve the concurrency + - Shrink the scope of non-suspendable types (`#[must_not_suspend]`) for dropping them before reaching a suspend point (`.await` call). This avoids possible deadlocks, delays, and situations where `Future`s not implementing `Send`. + - Reference: https://rust-lang.github.io/rfcs/3014-must-not-suspend-lint.html + ## [0.6.1] - 2021-11-16 ### Fixed - Gracefully handle the hot-reloading errors. diff --git a/Cargo.lock b/Cargo.lock index 1a64d2b..aa3a55f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1638,7 +1638,7 @@ dependencies = [ [[package]] name = "rustypaste" -version = "0.6.1" +version = "0.6.2" dependencies = [ "actix-files", "actix-multipart", diff --git a/Cargo.toml b/Cargo.toml index 94ac123..cf91088 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustypaste" -version = "0.6.1" +version = "0.6.2" edition = "2021" description = "A minimal file upload/pastebin service" authors = ["Orhun Parmaksız "]