chore(release): prepare for v0.8.1

This commit is contained in:
Orhun Parmaksız 2022-10-04 12:49:23 +02:00
parent 5cdbc8da61
commit 20a1482aa7
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
3 changed files with 13 additions and 2 deletions

View File

@ -4,6 +4,17 @@ 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.1] - 2022-10-04
### Added
- Add `<server_address>/version` endpoint for retrieving the server version
```toml
[server]
expose_version=true
```
If `expose_version` entry is not present in the configuration file, `/version` is not exposed. It is recommended to use this feature with authorization enabled.
## [0.8.0] - 2022-10-03
### Added
- Support adding a landing page

2
Cargo.lock generated
View File

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

View File

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