chore(release): prepare for v0.6.1

This commit is contained in:
Orhun Parmaksız 2021-11-16 19:48:38 +03:00
parent 8b17137c52
commit dbda1bb94a
No known key found for this signature in database
GPG key ID: F83424824B3E4B90
3 changed files with 7 additions and 2 deletions

View file

@ -4,6 +4,11 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.6.1] - 2021-11-16
### Fixed
- Gracefully handle the hot-reloading errors.
- Errors that may occur while locking the [Mutex](https://doc.rust-lang.org/std/sync/struct.Mutex.html) are handled properly hence a single configuration change cannot take down the whole service due to [poisoning](https://doc.rust-lang.org/std/sync/struct.Mutex.html#poisoning).
## [0.6.0] - 2021-11-07 ## [0.6.0] - 2021-11-07
### Added ### Added
- Support pasting files from remote URLs (via `remote=` form field) - Support pasting files from remote URLs (via `remote=` form field)

2
Cargo.lock generated
View file

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

View file

@ -1,6 +1,6 @@
[package] [package]
name = "rustypaste" name = "rustypaste"
version = "0.6.0" version = "0.6.1"
edition = "2021" edition = "2021"
description = "A minimal file upload/pastebin service" description = "A minimal file upload/pastebin service"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"] authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]