mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2025-01-31 13:02:43 -05:00
chore(release): prepare for v0.8.1
This commit is contained in:
parent
5cdbc8da61
commit
20a1482aa7
3 changed files with 13 additions and 2 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -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/),
|
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.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
|
## [0.8.0] - 2022-10-03
|
||||||
### Added
|
### Added
|
||||||
- Support adding a landing page
|
- Support adding a landing page
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1367,7 +1367,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustypaste"
|
name = "rustypaste"
|
||||||
version = "0.8.0"
|
version = "0.8.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix-files",
|
"actix-files",
|
||||||
"actix-multipart",
|
"actix-multipart",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rustypaste"
|
name = "rustypaste"
|
||||||
version = "0.8.0"
|
version = "0.8.1"
|
||||||
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>"]
|
||||||
|
|
Loading…
Reference in a new issue