From 374a29751432245fe153efb0de80192b8a15842e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Leblanc?= Date: Tue, 15 Jan 2019 11:02:05 -0500 Subject: [PATCH] version bump --- autocrop/__version__.py | 2 +- changelog.md | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/autocrop/__version__.py b/autocrop/__version__.py index 902dfea..ba32a4f 100644 --- a/autocrop/__version__.py +++ b/autocrop/__version__.py @@ -3,4 +3,4 @@ __title__ = 'autocrop' __description__ = 'Automatically crops faces from batches of pictures' __author__ = 'François Leblanc' -__version__ = '0.3.0' +__version__ = '0.3.1' diff --git a/changelog.md b/changelog.md index 28b6525..10694ba 100644 --- a/changelog.md +++ b/changelog.md @@ -1,13 +1,18 @@ # Autocrop changelog -## 0.3.0 - +## 0.3.1 ### Changes * Add `-r`, `--reject` flag to specify directory where the images that autocrop *couldn't* find a face in are directed to. * Instead of having the target files copied then cropped, they are instead cropped and saved to their respective target folder. -## 0.2.0 +## 0.3.0 +### Changes +* Added support for padding (`padLeft`, etc.) in the CLI. + +### Bugfix +* Fixed warp on crop for `-w` and `-h` values +## 0.2.0 ### Changes * Add `-o`, `--output` flag to specify directory where cropped images are to be dumped. - Error out if output folder set to current directory, i.e. `-o .`