diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d0cdeab..22f83d1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). +## [0.10.1] - 2023-07-19 + +### Added + +- Add `antialias` boolean parameter to `Page.to_image(...)` and associated methods (h/t @cmdlineluser). ([7e28931](https://github.com/jsvine/pdfplumber/commit/7e28931)) + ## [0.10.0] - 2023-07-16 ### Changed diff --git a/CITATION.cff b/CITATION.cff index ddd21807..75d1826b 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,8 +1,8 @@ cff-version: 1.2.0 title: pdfplumber type: software -version: 0.10.0 -date-released: "2023-07-16" +version: 0.10.1 +date-released: "2023-07-19" authors: - family-names: "Singer-Vine" given-names: "Jeremy" diff --git a/pdfplumber/_version.py b/pdfplumber/_version.py index a1da7df7..77610ad1 100644 --- a/pdfplumber/_version.py +++ b/pdfplumber/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 10, 0) +version_info = (0, 10, 1) __version__ = ".".join(map(str, version_info))