chore(release): prepare for v0.8.4

This commit is contained in:
Orhun Parmaksız 2023-01-31 21:20:06 +03:00
parent 29d5856566
commit a0ba66cac1
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
3 changed files with 10 additions and 2 deletions

View File

@ -4,6 +4,14 @@ 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.8.4] - 2023-01-31
### Changed
- Allow downloading files via `?download=true` parameter
- If you specify this for a file (e.g. `<server_address>/file?download=true`), `rustypaste` will override the MIME type to `application/octet-stream` and this will force your browser to download the file.
- This is useful when e.g. you want to be able to share the link to a file that would play in the browser (like `.mp4`) but also share a link that will auto-download as well.
## [0.8.3] - 2023-01-30 ## [0.8.3] - 2023-01-30
### Updated ### Updated
- Bump dependencies - Bump dependencies

2
Cargo.lock generated
View File

@ -1373,7 +1373,7 @@ dependencies = [
[[package]] [[package]]
name = "rustypaste" name = "rustypaste"
version = "0.8.3" version = "0.8.4"
dependencies = [ dependencies = [
"actix-files", "actix-files",
"actix-multipart", "actix-multipart",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rustypaste" name = "rustypaste"
version = "0.8.3" version = "0.8.4"
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>"]