diff --git a/CHANGELOG.md b/CHANGELOG.md index f0a8472..d6e0bc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,36 @@ 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.15.1] - 2024-07-29 + +### Added + +- Include file creation date in the file list (`creation_date_utc`) + +```sh +$ curl "http:///list" | jq . + +[ + { + "file_name": "immense-goose.txt", + "file_size": 416, + "creation_date_utc": "2024-06-12 19:21:56", + "expires_at_utc": null + } +] +``` + +- Enable Docker ARM64 builds +- Add @tessus as a maintainer + +### Removed + +- Remove public instance link and blog post from README.md + +### Fixed + +- Fix uploading reports to codecov + ## [0.15.0] - 2024-03-27 ### Added diff --git a/Cargo.lock b/Cargo.lock index 0c2c659..a8fa5b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2219,7 +2219,7 @@ checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" [[package]] name = "rustypaste" -version = "0.15.0" +version = "0.15.1" dependencies = [ "actix-files", "actix-multipart", diff --git a/Cargo.toml b/Cargo.toml index 4083010..433177f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustypaste" -version = "0.15.0" +version = "0.15.1" edition = "2021" description = "A minimal file upload/pastebin service" authors = ["Orhun Parmaksız "]