chore(release): prepare for v0.8.2

This commit is contained in:
Orhun Parmaksız 2022-10-04 19:37:09 +02:00
parent a324305a7d
commit a954676547
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
3 changed files with 8 additions and 3 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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.8.2] - 2022-10-04
### Updated
- Don't expose version endpoint in default config
- Set `expose_version` to `false` in the configuration file
## [0.8.1] - 2022-10-04
### Added
- Add `<server_address>/version` endpoint for retrieving the server version
@ -38,7 +43,7 @@ If the landing page entry is not present in the configuration file, visiting the
### Updated
- Do not check for duplicate files by default
- Set `duplicate_files` to `true` to the configuration file
- Set `duplicate_files` to `true` in the configuration file
- It is an expensive operation to do on slower hardware and can take an unreasonable amount of time for bigger files
- Enable [GitHub Sponsors](https://github.com/sponsors/orhun) for funding
- Consider supporting me for my open-source work 💖

2
Cargo.lock generated
View File

@ -1401,7 +1401,7 @@ dependencies = [
[[package]]
name = "rustypaste"
version = "0.8.1"
version = "0.8.2"
dependencies = [
"actix-files",
"actix-multipart",

View File

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