diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eddb43..b8d4e17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 `/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 💖 diff --git a/Cargo.lock b/Cargo.lock index 01e296b..7092302 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1401,7 +1401,7 @@ dependencies = [ [[package]] name = "rustypaste" -version = "0.8.1" +version = "0.8.2" dependencies = [ "actix-files", "actix-multipart", diff --git a/Cargo.toml b/Cargo.toml index 19ab36c..eaa4603 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "]