chore(release): prepare for v0.6.2

This commit is contained in:
Orhun Parmaksız 2021-12-05 16:16:10 +03:00
parent 17b8c1940c
commit 4f6456a3c8
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
3 changed files with 8 additions and 2 deletions

View File

@ -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.

2
Cargo.lock generated
View File

@ -1638,7 +1638,7 @@ dependencies = [
[[package]]
name = "rustypaste"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"actix-files",
"actix-multipart",

View File

@ -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 <orhunparmaksiz@gmail.com>"]