mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-22 04:19:47 -05:00
chore(release): prepare for v0.4.0
This commit is contained in:
parent
45d97a9251
commit
14d278629f
3 changed files with 11 additions and 3 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -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.4.0] - 2021-08-27
|
||||||
|
### Added
|
||||||
|
- Support [expiring links](README.md#expiration) (via `expire:` header)
|
||||||
|
- Timestamps are used as extension for expiring files
|
||||||
|
- Expired files can be cleaned up with [this command](README.md#cleaning-up-expired-files)
|
||||||
|
- Support [one shot links](README.md#one-shot) (via `oneshot=` form field)
|
||||||
|
- `{server.upload_path}/oneshot` is used for storage
|
||||||
|
|
||||||
## [0.3.1] - 2021-08-10
|
## [0.3.1] - 2021-08-10
|
||||||
### Fixed
|
### Fixed
|
||||||
- Switch to [upload-release-action](https://github.com/svenstaro/upload-release-action) for uploading releases
|
- Switch to [upload-release-action](https://github.com/svenstaro/upload-release-action) for uploading releases
|
||||||
|
@ -15,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [0.2.0] - 2021-08-04
|
## [0.2.0] - 2021-08-04
|
||||||
### Added
|
### Added
|
||||||
- Support shortening URLs (via `url=` form parameter)
|
- Support shortening URLs (via `url=` form field)
|
||||||
- `{server.upload_path}/url` is used for storage
|
- `{server.upload_path}/url` is used for storage
|
||||||
|
|
||||||
## [0.1.3] - 2021-07-28
|
## [0.1.3] - 2021-07-28
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1513,7 +1513,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustypaste"
|
name = "rustypaste"
|
||||||
version = "0.3.1"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix-files",
|
"actix-files",
|
||||||
"actix-multipart",
|
"actix-multipart",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rustypaste"
|
name = "rustypaste"
|
||||||
version = "0.3.1"
|
version = "0.4.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
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