From 421597d594e65cfd0cf0db315d752f0a10292e46 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Sun, 1 Oct 2023 23:40:38 +0100 Subject: [PATCH] Bump version and update changelog --- CHANGELOG.md | 4 ++++ hugophotoswipe/__version__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7fcfcc..fb85747 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## Version 0.3.1 + +- Fix bug due to `PIL.Image.ANTIALIAS` deprecation + ## Version 0.3.0 - Change checksum algorithm to sha256. This makes checksums in the album.yml diff --git a/hugophotoswipe/__version__.py b/hugophotoswipe/__version__.py index 122c84c..494ee66 100644 --- a/hugophotoswipe/__version__.py +++ b/hugophotoswipe/__version__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -VERSION = (0, 3, 0) +VERSION = (0, 3, 1) __version__ = ".".join(map(str, VERSION))