From 4f6456a3c89b49605f0968345ead1ac7d6d4cda6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Sun, 5 Dec 2021 16:16:10 +0300 Subject: [PATCH] chore(release): prepare for v0.6.2 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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 "]