chore(release): prepare for v0.10.1

This commit is contained in:
Orhun Parmaksız 2023-06-06 00:29:52 +03:00
parent 07ec392867
commit a1bc77430e
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
3 changed files with 22 additions and 2 deletions

View File

@ -5,6 +5,26 @@ 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.10.1] - 2023-06-05
### Added
- Add a middleware for checking the content length
- Before, the upload size was checked after full upload which was clearly wrong.
- With this change, total amount of bytes to upload is checked via [`Content-Length`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Length) header before the upload.
### Changed
- Bump Shuttle to `0.18.0`
- Bump hotwatch to 0.5.0
- Fixes [`RUSTSEC-2020-0016`](https://rustsec.org/advisories/RUSTSEC-2020-0016.html)
### Fixed
- Do not drop the config watcher
- Since `0.9.0`, the configuration watcher was dropped early which caused for it to not work and resulted in mysterious spikes in CPU usage.
- With this version, this issue is fixed.
## [0.10.0] - 2023-05-31
### Added

2
Cargo.lock generated
View File

@ -2139,7 +2139,7 @@ checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
[[package]]
name = "rustypaste"
version = "0.10.0"
version = "0.10.1"
dependencies = [
"actix-files",
"actix-multipart",

View File

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