From 22162c0e905eb077af84fb0d837fb04404a97295 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Mon, 29 Jul 2024 23:06:06 +0300 Subject: [PATCH] chore(release): prepare for v0.15.1 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0a84723..d6e0bc38 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 0c2c6596..a8fa5b0a 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 4083010f..433177f3 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 "]