From 06600830dd0fe9c7f04544afd5aadc8d9d983a80 Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Wed, 29 May 2024 00:34:40 -0700 Subject: [PATCH] v4.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Release notes: There are no functionality changes. However, there is one breaking change: instead of the deprecated `convert` command for ImageMagick, `folderify` will invoke `magick`. The `magick` command was added at least ≈8 years ago, so this should not be an issue for most users. This change should prevent `WARNING: The convert command is deprecated in IMv7, use "magick"` messages from spilling into the output of `folderify`, particularly for Homebrew users who are on the latest version of ImageMagick. --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb7dd40..9fd2617 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,7 +91,7 @@ dependencies = [ [[package]] name = "folderify" -version = "3.2.4" +version = "4.0.0" dependencies = [ "clap", "clap_complete", diff --git a/Cargo.toml b/Cargo.toml index 0f6397f..30fa09d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "folderify" -version = "3.2.4" +version = "4.0.0" edition = "2021" description = "Generate a native-style macOS folder icon from a mask file." license = "MIT"