From 00cee6d9bad13e12363452c972f20ec814515ad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Tue, 4 Oct 2022 01:29:35 +0200 Subject: [PATCH] chore(release): prepare for v0.8.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a92edf..e54e4c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,30 @@ 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.0] - 2022-10-03 +### Added +- Support adding a landing page + +You can now specify a landing page text in the configuration file as follows: + +```toml +[server] +landing_page = """ +boo 👻 +====== +welcome! +""" +``` + +If the landing page entry is not present in the configuration file, visiting the index page will redirect to the repository. + +### Updated +- Do not check for duplicate files by default + - Set `duplicate_files` to `true` to 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 💖 + ## [0.7.1] - 2022-05-21 ### Added - Aggressively test everything diff --git a/Cargo.lock b/Cargo.lock index 9e06dcc..1d40478 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1367,7 +1367,7 @@ dependencies = [ [[package]] name = "rustypaste" -version = "0.7.1" +version = "0.8.0" dependencies = [ "actix-files", "actix-multipart", diff --git a/Cargo.toml b/Cargo.toml index e28d369..55a2b05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustypaste" -version = "0.7.1" +version = "0.8.0" edition = "2021" description = "A minimal file upload/pastebin service" authors = ["Orhun Parmaksız "]