diff --git a/Cargo.lock b/Cargo.lock index af85b23..4ca17b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2149,7 +2149,7 @@ dependencies = [ [[package]] name = "pict-rs" -version = "0.5.17-pre.6" +version = "0.5.17-pre.7" dependencies = [ "actix-form-data", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index dd867f1..b8eb104 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pict-rs" description = "A simple image hosting service" -version = "0.5.17-pre.6" +version = "0.5.17-pre.7" authors = ["asonix "] license = "AGPL-3.0" readme = "README.md" diff --git a/pict-rs.nix b/pict-rs.nix index 0ac7b01..164afd7 100644 --- a/pict-rs.nix +++ b/pict-rs.nix @@ -1,6 +1,6 @@ { exiftool , ffmpeg6_pict-rs -, imagemagick7_pict-rs +, imagemagick_pict-rs , lib , makeWrapper , nixosTests @@ -11,7 +11,7 @@ rustPlatform.buildRustPackage { pname = "pict-rs"; - version = "0.5.17-pre.5"; + version = "0.5.17-pre.7"; src = ./.; cargoLock = { @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage { postInstall = '' wrapProgram $out/bin/pict-rs \ - --prefix PATH : "${lib.makeBinPath [ imagemagick7_pict-rs ffmpeg6_pict-rs exiftool ]}" + --prefix PATH : "${lib.makeBinPath [ imagemagick_pict-rs ffmpeg6_pict-rs exiftool ]}" ''; passthru.tests = { inherit (nixosTests) pict-rs; }; diff --git a/releases/0.5.17-pre.7.md b/releases/0.5.17-pre.7.md new file mode 100644 index 0000000..cefe645 --- /dev/null +++ b/releases/0.5.17-pre.7.md @@ -0,0 +1,16 @@ +# pict-rs 0.5.17-pre.7 + +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.7 improves the upgrade path from 0.5.16 when using object storage without path +style, as well as improves performance when writing files to disk or into processes' stdin. It also +adds more timeouts to ensure smooth operation in the face of misbehaving spawned processes. + +## Upgrade Notes + +There are no significant changes from 0.5.17-pre.6. Upgrading should be as simple as pulling a new +version of pict-rs. If upgrading causes problems with your object storage and you use vhost style +object storage, please let me know.