2
0
Fork 0
mirror of https://git.asonix.dog/asonix/pict-rs synced 2024-12-21 10:51:25 +00:00

Prepare v0.5.17-pre.8

This commit is contained in:
asonix 2024-12-10 18:49:16 -06:00
parent 7ba67cff22
commit 50792a1249
4 changed files with 18 additions and 3 deletions

2
Cargo.lock generated
View file

@ -2214,7 +2214,7 @@ dependencies = [
[[package]]
name = "pict-rs"
version = "0.5.17-pre.7"
version = "0.5.17-pre.8"
dependencies = [
"actix-form-data",
"actix-web",

View file

@ -1,7 +1,7 @@
[package]
name = "pict-rs"
description = "A simple image hosting service"
version = "0.5.17-pre.7"
version = "0.5.17-pre.8"
authors = ["asonix <asonix@asonix.dog>"]
license = "AGPL-3.0"
readme = "README.md"

View file

@ -11,7 +11,7 @@
rustPlatform.buildRustPackage {
pname = "pict-rs";
version = "0.5.17-pre.7";
version = "0.5.17-pre.8";
src = ./.;
cargoLock = {

15
releases/0.5.17-pre.8.md Normal file
View file

@ -0,0 +1,15 @@
# pict-rs 0.5.17-pre.8
pict-rs is a simple image hosting microservice, designed to handle storing and retrieving images,
animations, and videos, as well as providing basic image processing functionality.
## Overview
pict-rs 0.5.17-pre.8 attempts to make blurhash calculation quicker by keeping the operations
entirely within the pict-rs application, rather than shelling out to imagemagick. It also plays
nicer with the rest of the application by taking a permit before performing any image operations.
## Upgrade Notes
There are no significant changes from 0.5.17-pre.7. Upgrading should be as simple as pulling a new
version of pict-rs.