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))