mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-21 11:59:48 -05:00
chore(release): prepare for v0.6.1
This commit is contained in:
parent
8b17137c52
commit
dbda1bb94a
3 changed files with 7 additions and 2 deletions
|
@ -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/),
|
||||
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
|
||||
### Added
|
||||
- Support pasting files from remote URLs (via `remote=` form field)
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1658,7 +1658,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "rustypaste"
|
||||
version = "0.6.0"
|
||||
version = "0.6.1"
|
||||
dependencies = [
|
||||
"actix-files",
|
||||
"actix-multipart",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rustypaste"
|
||||
version = "0.6.0"
|
||||
version = "0.6.1"
|
||||
edition = "2021"
|
||||
description = "A minimal file upload/pastebin service"
|
||||
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
|
||||
|
|
Loading…
Reference in a new issue